Hello How do i remove the lines under the post title and another line under the 728×90 advert and another line at the end of the article. Please see the screenshot from this link: (https://imgur.com/a/QSqHa03) to understand what i mean.
-
This topic was modified 6 years by
Mariak.
Hello,
These lines can be remove only with custom css -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ if you need help with this, please provide me a link to your website and I will provide to you the proper custom css.
Thank you!
Hello,
Here is the custom css that remove those two borders from posts -> http://prntscr.com/pfwt9k
.single .td-post-sharing-top, .td-post-sharing-bottom {
border-top: 0;
}
.single .td-header-style-5 .td-ad-m {
border-bottom: 0;
}
The code need to be set in Theme panel> Custom code> Custom css
Thanks.
Hello,
If you are referring to this this border -> http://prntscr.com/pfz4yu thene the above custom css that I provide to you is remove that line too -> http://prntscr.com/pfz5mv
Thank you!
1 I want to remove crumb borders and remove the blank space there. Check here: http://www.talkofjuba.com/entertainment/ just under the 728×90 advert banner. Please help.
2. I want to remove the border on homepage under the 728×90 advert banner. Check here: http://www.talkofjuba.com/
3. I want to remove the same border also on the top of pages
Please help
Hello,
In order to remove all these borders, please replace the code that I provide to you with this one:
.td-post-sharing-top, .td-post-sharing-bottom {
border-top: 0;
}
.td_category_template_3 .td-scrumb-holder, .td-header-style-5 .td-ad-m {
border-bottom: 0;
}
Thank you!
Thanks it worked but im getting a grey space line on top of pages. How do i remove that please? See screenshot: https://imgur.com/a/jtIFpeX
I want to completely remove that grey space and reduce white space there.
http://www.talkofjuba.com/entertainment/
Hi,
From what I can see this gray space is only on categories -> http://prntscr.com/pgr9b3 you can try this custom css to remove it.
.td-category-header .td-scrumb-holder{
display: none;
}
Thank you!