Post widget

Posted in: Newspaper
Post count: 16

Hello,

Can i put a bar (the bar of the template works but are to separate sections and i need posts) between post to separate them on the home page?

I add a photo of what i’m talking about: https://imgur.com/a/UeNQd4w

Post count: 16

Hey why no one answer me?

Post count: 22421

Hello,

The support hours are posted at the top of the page. We do not work on weekends.
If you need a separator between modules, you can add it with a bit of custom css.
Here is an example for a block 11:


.td_block_11 .td_module_10{
border-top:1px solid lightgrey;
padding:15px;
}
.td_block_11 .td_module_10 .td-module-thumb{
top: 15px;
}

You can add the code in the theme panel-> custom css box
result: https://www.screencast.com/t/1mYxkfkTgIG8

Thank you!

Post count: 16

Hello Bogdan, we are trying to use the code but nothing happen, there is any chance to get in chat with you, or some help to solve the problem?

Post count: 20688

Hi,

Instead of guesswork, it would be better to provide a link to your website and details about what exactly you want to do, which elements should be affected and where.
That would be quicker, the code provided above would be an example and will apply only for a particular module.

Post count: 16

Hello Simion,

The link of the website is: http://www.gamingcoffee.com

We are trying to add separators in this section: http://prntscr.com/kahoh1 in the homepage.

The name of the block is Block21: http://prntscr.com/kahph5.

Post count: 20688

Hi,

You could try a code like this for example

.home .td_block_21 .td_module_16:not(:first-child):before {
content:"";
position:absolute;
top: -20px;
width: 100%;
height: 2px;
background-color: black;
}

The result is here – https://www.screencast.com/t/UvJtju1H5
The code will affect only block 21 in the homepage. Give it a try, see if it is what you wanted.

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