Post title underlining CSS needed
-
I have the upgrade running but I don’t know the instruction needed to reduce the underlining of the post titles to a single thickness. I think I need to delete the title underline/underscore so the line is a single thickness.
Can anyone help?
The theme is Duotone.The blog I need help with is: (visible only to logged in users)
-
Hi there,
From this CSS attribute, delete the border specification:#post .sleeve { border-top: 2px solid #FFFFFF; display: block; padding: 10px; }so that it looks like this:
#post .sleeve { display: block; padding: 10px; } -
Thanks for this. I put your suggestion on a stylesheet and saved it but it didn’t seem to make any difference! Tried signing out and going back – still no change so I’ve taken it out again.
What did I do wrong? Or would it only be applied to a new post? -
zandyring is technically correct but you need to make the change in a slightly different way at WordPress.com by overriding instead of removing. Add this to your Appearance → Custom Design → CSS instead:
#post .sleeve { border-top: none; } -
-
Oh Happiness Engineer you have made my day! Thank you so much – I think it looks much better now.
-
- The topic ‘Post title underlining CSS needed’ is closed to new replies.