Tagged: 

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #492919

    Hi,

    I want only the links to have this color: 5d8295
    but when I add it to General Styling – Primary color – Font color for links, dropcaps and other elements it overrides the color I set for text like you can see here: http://www.airlinestaffrates.com/bahamas-grand-lucayan-bahamas-3/

    I have set another color for Grand Lucayan Bahamas but the link color overrides it.

    What code shall I add in order to just keep the links with this color: #5d8295

    Thanks
    Charlotte

    #493074

    Hi Charlotte!

    You can use the below css to apply the link color change to paragraphs only:

    p a {
      color: #5d8295 !important;
    }

    If you want it to be page specific you can use page-ids like the example below:

    .page-id-324 p a {
      color: #5d8295 !important;
    }

    Best regards,
    Dake

    #493125

    thanks, but I don´t see any different after I was adding this code:
    p a {
    color: #5d8295 !important;
    }

    It still overrides the color I have set manually in a post and this happens to bold text.

    #493161

    Hi!

    That’s strange. It sounds like there may be another conflict elsewhere.

    May we have temporary access to your website so we can take a closer look?

    Cheers!
    Dake

    #493209

    Thanks..

    #493276

    Hi!

    I tried logging in with the credentials you provided, but I’m getting an invalid username error.

    Best regards,
    Dake

    #493350

    Ah sorry, try now.

    #493924

    Hey!

    I checked the site and the link color (#5d8295) is being applied:

    Contact:
     (Email address hidden if logged out) 
    www.grandlucayan.com
    

    Cheers!
    Ismael

    #493943

    Well, I know that!

    But as i tried to explain I don´t want the bold text to also have the link color.

    How can I change that?

    #494307

    Hey!

    You can change the color of bolded text by using the below css.

    strong {
     color: #000000 !important;
    }
    
    .page-id-16847 strong {
     color: #000000 !important;
    }

    The css with the page-id will apply to the “BAHAMAS – Grand Lucayan Bahamas” page only.

    Regards,
    Dake

    #494985

    Ok, thanks… but I need it to apply to all blog post.

    #495015

    Hi!

    If you want it to apply to all blog posts then you can use this css:

    strong {
     color: #000000 !important;
    }

    Regards,
    Dake

    #495456

    oK.. thanks.

    #495472

    Hi!

    You’re welcome :)

    Please let us know if you ever need help in the future.

    Best regards,
    Dake

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘Link color’ is closed to new replies.