Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2227483
Link color in headlines
Closed

Comments

  • m28006 started the conversation

    Hi, in regards to headlines formatted as hyperlinks: Instead of the default link color, I would like to apply the default color for non-linked headlines. Underline on mouseover should remain unchanged.  Is this possible?

  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to do that:

    .post-entry h1, 
    .post-entry h2, 
    .post-entry h3, 
    .post-entry h4, 
    .post-entry h5, 
    .post-entry h6, 
    .wpb_text_column h1, 
    .wpb_text_column h2, 
    .wpb_text_column h3, 
    .wpb_text_column h4, 
    .wpb_text_column h5, 
    .wpb_text_column h6{
        color: #3e4cb5;
    }
    

    Change color code #3e4cb5 on the above code to color code as you want.


    Best Regards,

    PenciDesign

  • m28006 replied

    Thanks, but that only changed the font for the headlines that don't contain hyperlinks.

  •  2,699
    PenciDesign replied

    Hi,

    If you want to change the color for the heading contain hyperlinks, please use this custom css:

    .post-entry h1 a, 
    .container-single .post-entry h1 a,
    .post-entry h2 a, 
    .container-single .post-entry h2 a,
    .post-entry h3 a, 
    .container-single .post-entry h3 a,
    .post-entry h4 a, 
    .container-single .post-entry h4 a,
    .post-entry h5 a, 
    .container-single .post-entry h5 a,
    .post-entry h6 a, 
    .container-single .post-entry h6 a{
        color: #3e4cb5;
    }

    Best Regards,

    PenciDesign