GeneratePress – Change Read More Text & Blog Text Colors

  • bhargavnarola

    Hello GeneratePress Team,

    I am using GeneratePress theme on my WordPress website.

    I want to change the default “Read More” text to “Read Blog More” on blog/archive posts, but I could not find the proper option in Customizer.

    I also want to change:

    * Post title color
    * Excerpt text color
    * Read More button/text styling

    Could you please guide me on:

    1. The correct GeneratePress option/location for this
    OR
    2. The recommended hook/filter snippet for changing the “Read More” text globally.

    Website: https://dviza.com/

    Thank you.

  • Hi there,

    Read More text: Go to Appearance > Customize > Layout > Blog and look for the Read More Label field. Change it to whatever you like.

    Post title and excerpt text color: Go to Appearance > Customize > Colors, then navigate to the Content section. For Post title, edit the Archive Content Title color.

    For the read more button, add the following CSS:

    .read-more {
        color: #55722F;
    }
    .read-more:hover {
        color: #2E3D29;
    }

    Adjust the color values to match your preference.

    For the excerpt, add the following CSS:

    .entry-summary p {
        color: #55722F;
    }

    Adjust the color value to match your preference.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.