Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1104334

    Hi, where and how can I change colors for links to the post? Because from General style it seams I can’t.
    Thanks.

    • This topic was modified 5 years, 3 months ago by robertoKM.
    #1104962

    I found this CSS and it works,
    #main strong > a {
    color: #ff073c!important;
    }

    but I would like to change its color after clicking to the link, and changing hoover color. Can you give me CSS?

    One more problem: the red links working in all the posts but not on this post:

    Thanks.

    • This reply was modified 5 years, 3 months ago by robertoKM.
    #1105032

    Hi,

    Thanks for the update. You can target the active and hover state using CSS like this:

    #main strong > a:active {
      Active state
    }
    
    #main strong > a:hover {
      Hover state
    }

    Best regards,
    Rikard

    #1105051

    Yeah, I did this. I´m really pleased with the result now. Thank you, Rikard!

    But, all pages are ok, just one page don’t have the link color:

    • This reply was modified 5 years, 3 months ago by robertoKM.
    #1105835

    Hi robertoKM,

    Try to clear the browser cache.
    What word in that page should change color?
    For now I see this code taking effect:

    .av_textblock_section .avia_textblock p a {
        color: red!important;
    }

    Best regards,
    Nikko

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