Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #377450

    Hi,

    I would like to change in the main content box the primary font color for links but not for dropcaps and other elements. How can I do that? Right now it is only possible to change all together.

    Thanks

    Greetings Thomas

    #377614

    Hey tom77113!

    You could do something like this.

    #main .main_color a { color: red; }
    

    If that has unexpected behaviour then you could also add a class to your links like so.

    <a href = "#" class = "custom_link">Click me</a>
    

    And then use this CSS to style it.

    .custom_link { color: red !important; }
    

    Best regards,
    Elliott

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