Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #853756

    Hi
    I want to be able to change the colour of the Bold text & Linked text individually, so they are different.
    I can’t even change the color with the Text Color
    What if I want to have Bold text Blue – #1e7fe8 and have
    Linked text (hyper linked) Red – #C92605
    I have tried the Advanced editor as well.
    There must be away to separate them…
    Any help would be great
    http://EasyOnlineBizSolutions.com

    Cheers
    Dave

    #853793

    Morning,

    .main_color strong { color: #1e7fe8;}

    will globally change all text using the <strong> tag to blue.

    a {color:#C92605;}

    will globally change ALL links to red.

    If you only want to target certain links you would have to apply a class to them and use css for example

    <a href="#" class="class-here">I'm a link</a>
    
    .class-here {color:#C92605;}

    Hope that helps

    TJ

    • This reply was modified 6 years, 7 months ago by tjswarbs78.
    #854214

    Hi,

    Thanks for helping out TJ, did you try the suggestion above @dave?

    Best regards,
    Rikard

    #854249

    Hi Guys
    I don’t understand what TJ means
    So do I put the code the style.css, it looks different to other styles.

    #854283

    Monring, Yes the code should be put in to the quick css section located under theme options > general styling

    Copy and paste below

    .main_color strong { color: #1e7fe8;}
    a {color:#C92605;}

    If that doesn’t do what you need or more changes are needed please come back

    Thanks

    TJ

    #854640

    How can I have it so that it is bold & when hyperlinked it is red, as it stays blue, just has a red line under it.

    Is there a way the editor on the page (for text color) can take priority over the style sheet?

    Or is there a way that there is no color given to Bold text in styles sheet and I can make it what ever color from the advanced page editor (text color)?

    Sorry to be a pain

    Cheers Dave

    #855173

    Hi,

    Could you please provide url to the page or a screenshot of the link/text that you want to change? Please try this css code.

    .main_color strong { 
        color: blue; 
        font-weight: bold; 
    }
    
    a {
        color: red;
    }
    

    Adjust the values as needed.

    Best regards,
    Ismael

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