Color of title text on the Forever theme's front page slider

  • Unknown's avatar

    Hello All!

    I need some help trying to figure out how to get the color changed on the text titles of the slider posts on my Forever theme. The maroon color that we have now is hard to see with the pictures in the background I would like the text to be white like it is after you click the linked text if that makes sense.

    http://www.conrad-caldwell.org is my website.

    Thank you in advance for any help you can provide!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi,

    I checked and it seems like the text is already white. Have you got this solved?

  • Unknown's avatar

    Hi, this will change the basic non-hover color:

    .feature-title a {
    color: #FFFFFF;
    }

    This will allow you to set the hover text color. Note that what you see for a color, is an RGB color designation with an opacity setting. The first three numbers, 255, 255, 255 are the red, green and blue color numbers, and the last number, the 0.8, is the opacity. The closer to 1, the more opaque. You can replace it with a standard hex color code if you wish.

    .feature-title a:hover {
    color: rgba(255, 255, 255, 0.8);
    }

    The slider titles also have a visited link color, a red, which you can change with the following.

    .feature-title a:visited {
    color: #790B10;
    }
  • Unknown's avatar

    Thank you guys so much! All resolved

    .feature-title a {
    color: #FFFFFF;
    }

    This CSS code fixed it now my non-hover and hover feature title text on my slider are white and much more easy to see vs. the Maroon!
    Thank you!!

  • Unknown's avatar
  • The topic ‘Color of title text on the Forever theme's front page slider’ is closed to new replies.