Horizontal line below Post heading on single.php

Posted in: Newspaper
Post count: 14

I need to add a horizontal line below the Heading which would dieerentiate bewteen teh ads and the heading

http://allaboutbelgaum.com/news/corporation-to-issue-to-notice-to-mayor-and-others-to-vacate-shops-on-khanapur-road/

Post count: 7909

Hi,

You can try this custom css to add a border there on post pages – http://screencast.com/t/wKdZ9HuWmloo

.single .td-logo-rec-wrap {
border-bottom: 1px solid red;
padding-bottom: 5px;
}

This will be applied on all your post templates as the default template doesn’t have a specific class to target. If you want this border only on default, you have to hide it:

.single_template_1 .td-logo-rec-wrap, .single_template_2 .td-logo-rec-wrap, .single_template_3 .td-logo-rec-wrap, .single_template_4 .td-logo-rec-wrap, .single_template_5 .td-logo-rec-wrap {
border-bottom: none !important;
padding-bottom: 0px !important;
}

Thanks!

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