Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #595364

    I want to change the font color for links and hover, only for just the posts in the blog. Now the color for links in the blog is same as the color which is defined as main content in general styling tab.
    How can I change the font color only for the posts in blog?
    Thanks in advance.

    #596053

    Hi Ayumi!

    You can add the following CSS code in the Quick CSS field under the General Styling tab in the theme options:

    .template-blog a {
        color: #eeeeee;
    }
    
    .template-blog a:hover {
        color: #000000;
    }

    Change the value of the color to the colors you want for links in the blog post.
    Regards,
    Jordan

    #596216

    Hi Jordan,

    Thank you for your response. The code works well. Excellent.
    Also, I need to change the color for bold style text in the blog post. Could you please tell the code?
    The Quick CSS is always helpful for me. Of course as well as support team members!
    Best,

    #596534

    Hey!

    Glad to hear the code worked!

    You can try the following to change the bold text’s color in the blog:

    .template-blog strong {
        color: #e4e4e4;
    }

    Best regards,
    Jordan

    #597470

    Jordan,

    Thank you for the code, it works well. Perfect.
    Best,

    Ayumi

    #597474

    Hi Ayumi!

    Glad to hear it worked! Enjoy your day :)

    Cheers!
    Jordan

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to change the font color for links for the posts in the blog?’ is closed to new replies.