Twenty Seventeen: display-posts, how to suppress line?
-
Hi
My CSS for display-posts at the moment:
.display-posts-listing .alignleft { float: right; margin: 5px 5px 25px 25px; } .display-posts-listing .listing-item { clear: both; padding-bottom: 40px; } .display-posts-listing .listing-item .title { display: block; font-size: 125%; margin-bottom: 10px; } .display-posts-listing .excerpt-dash { display: none; }Is there a way to get rid of the thin line below the post titles on https://ubblogtest.wordpress.com?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
Please try using the css below:
a.title { box-shadow: none; -webkit-box-shadow: none; }You’d also like to remove the box-shadow when hovering over titles, please use this css instead:
a.title, a:hover.title { box-shadow: none; -webkit-box-shadow: none; } -
Thank you Gary, working great! :-)
I’d like to keep the underline while hovering – although it looks a bit strange because it is so much longer than the post title.
-
For others who land here:
> underline … is so much longer than the post title
- The topic ‘Twenty Seventeen: display-posts, how to suppress line?’ is closed to new replies.