Divider between articles

Posted in: Newspaper
Post count: 8

Hi, I would like to add a divider between my article.
In the lifestyle demo, there is an example that I like, between article : https://demo.tagdiv.com/newspaper_lifestyle/ (between 15 beauties and top 3 lessons)
What should I add in the editor?

Post count: 7

Hi, do you mean the gap between the articles?

I believe that you should have this already, but if not, simply put this in your CSS file and test if it works:

.td-lifestyle .td-pb-span8 .td_block_18 .td_module_10 {
margin-bottom: 35px;
padding-bottom: 35px;

Post count: 8

I mean the lines. My current demo is “Default Demo”
Thank you for your answer 🙂

Post count: 23312

Hello Multi,

Please check the following image here -> https://www.screencast.com/t/XKU2p45WmP because there you will see the code which is used in our theme for that divider.

Thanks for the message!

Post count: 22421

Hello,

The line is added custom for that particular demo. You will have to use block 18 and add this css in your theme panel- custom code-> custom css section:

.td_block_18 .td_module_10:before{
content: '';
width: 100%;
height: 1px;
position: absolute;
bottom: 20px;
left: 0;
background-color: #000;
opacity: .06;
box-sizing: border-box;
}

Thank you!

Post count: 8

Thank you, it’s working!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.