Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #558617

    How do I change the colors of the custom text link & the hovered link without it affecting the font colors for dropcaps and other elements in the Main Content tab?

    #558619

    Hi yifatcohen!

    What you say “custom text link” your just talking about regular links that you use in the page content? You can change this in Dashboard > Enfold > General Styling > Main Content.

    You could also try some CSS like this.

    #top p a { color: red; }
    #top p a:hover { color: blue; }
    

    Cheers!
    Elliott

    #559567

    Thanks Elliott.

    I think there’s a misunderstanding.

    Please take a look at this screenshot -http://screencast.com/t/krKcaSWS

    And now look at this one – http://screencast.com/t/LMa3a6qg

    See how one can’t tell the difference between a link and a title?

    #559592

    Also, when I make the Border colors transparent with RGB – rgba(0, 0, 0, 0)
    it messes up the entire layout.

    How do I remove the borders completely?

    #559606

    Hey!

    Please add following code to Quick CSS instead

    .main_color a,.alternate_color a { color: inherit; }
    body * { border: none !important; }

    Please note that second line of code would remove all the borders. If you would like to remove certain borders, please post a screenshot and show them or post the link to your website and point them out

    Cheers!
    Yigit

    #559649

    Thanks Yigit!

    It works well.

    Last question.. how do I make the links blue with an underline, not gray?

    #559658

    Hey!

    Please change the first line of code to following one

    .main_color a,.alternate_color a { color: blue; text-decoration: underline; }

    Best regards,
    Yigit

    #560706

    Thank you!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘How to change ONLY the link color’ is closed to new replies.