badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

css for blog post info

Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #21950
    Barry
    Participant

    I have successfully added css to underline links for pages and posts via

    #main
    a:link { color: #036057; text-decoration: underline; }
    a:visited { color: #036057; text-decoration: underline; }
    a:hover { color: #036057; text-decoration: underline; }
    a:active { color: #036057; text-decoration: underline; }

    I have also turned off underlining in sidebar via

    #secondary
    a:link { text-decoration: none; }
    a:visited { text-decoration: none; }
    a:hover { text-decoration: none; }
    a:active { text-decoration: none; }

    What I’d now like to do is have turn off the underlining for each blog post title (and author, date, categories, and comments) while leaving the underlines in place for the content within each post. How would I go about doing that, please?

    http://www.leadershiptraction.com/blog/

    #22020

    Hi Barry,

    Remove all the above CSS and just paste the below one CSS it will take action to the post content area only.

    #content .entry-content a {
        color: #036057; 
        text-decoration: underline; }
    }

    Thank you

    #22052
    Barry
    Participant

    Brilliant! Knowing what you’re doing is a very powerful thing! Thanks, Keymaster.

    #22138

    You welcome Barry

    Thank you!

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