Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #115627

    How do I change the featured content Title font color? It is currently #fffffF. I want to change it to #aed651

    #115632
    Mahesh
    Keymaster

    @jamesmillerlifeology: Since you are using Pro version, color option feature is available. Go to Dashboard=> Appearance=> Customize=> Color Options=> Featured Content Color and click on Title Color‘s select color and paste the color hex code (#aed651) there.
    Or
    Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #featured-content .entry-header .entry-title a {
        color: #aed651;
    }

    Regards,
    Mahesh

    #115657

    Hi Thank you for your response. I guess I didn’t explain myself well.
    I can change the color of the title (hyperlink) featured content but I can’t change the section title itself. Take a look at my site and scroll down to the featured content where it says: FEATURED: Lifeology | Radio Episodes. I’m trying to change the font color of that section title. I put the additional css code into the customizer and nothing happened. http://www.JamesMillerLifeology.com

    Also, what is the css code for changing the color of the featured content title when someone hovers over it? I’d like to change it from #aed651 to #000000.

    Thank you.

    #115725
    Mahesh
    Keymaster

    @jamesmllerlifeology: Add the following CSS:

    #featured-grid-content .entry-title > a {
        color: #aed651;
    }
    
    #featured-grid-content .entry-title > a:hover {
        color: #000000;
    }

    Regards,
    Mahesh

    #115769

    Hmm I’m not sure why none of these things are working. I have put your css in the “additional css” section and nothing seems to happen.

    #115830
    Mahesh
    Keymaster

    @jamesmillerlifeology: You are using compressing plugin, please try disabling that plugin and check if that works.

    Regards,
    Mahesh

    #121157

    Hi, no, it didn’t work. I’m not sure what compressor I have as a plug in. Do you know in which php or css file I can find the line? I’ll change it manually in there instead of using additional css.

    #121174
    Mahesh
    Keymaster

    @jamesmillerlifeology: Do you have put the above CSS in your site? I checked you site but cannot find the code. Please try again and try clearing the cache too. If the problem persist, we’ll have to check for the issue on your server. Let me know further.

    Regards,
    Mahesh

    #121207

    Yes, i re-input the code, cleared my cache and saved. It doesn’t change the color of the title.

    #121258
    Mahesh
    Keymaster

    @jamesmillerlifeology: I just checked your site, the title is turning black on hover. What problem are you facing?

    Regards,
    Mahesh

    #121280

    It still is black. I’m trying to change the title: Current Lifeology | Radio Episodes, not Lifeology | Radio. I’ve cleared my cache several times, and even checked it on a different browser and it still looks the same.

    #121296
    Mahesh
    Keymaster

    @jamesmillerlifeology: Okay, your last reply made the clarification. I thought it was the Featured Content Title. To change Current Lifeology | Radio Episodes color, add the following CSS:

    #featured-content .entry-title {
        color: #aed651;
    }

    Note: Please change the color as desired.

    Regards,
    Mahesh

    #121334

    awesome!! Thank you.

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Featured Content Title Font Color’ is closed to new replies.