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
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!
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.
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.
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.