Hi, I need to remove the border on a page, between Pagebuilder and Latest articles. Like on this image: http://www.screencast.com/t/bow3LVyWcnJ
I added this code to custom css:
.td-container {
border-bottom: none;
}
But I need to know if there is a better way to accomplish this.
(Here’s an example.)
Regards,
Felipe Z.
Hi,
I checked your site and seems that you managed to solve the issue: http://screencast.com/t/fcHxfUfP
Yes only with css is possible to to that.
Thanks!
Hi Alin, thanks for your time. Yes I solved it but with the code above that I think it could be too general. ¿Is there a solution more specific? Because I think my solution removes container bottom border of the whole site.
Now I commented the code for you to take a look if you please.
Regards,
Fz
Hi,
You can try this solution:
1.Edit page-pagebuilder-latest.php and add a class to the td-container’s div linke this: http://screencast.com/t/bSM4KwuhpWT8
2. Now you can use css code to target that class: http://screencast.com/t/Srd12ogg1z
.no-border{
border-bottom: none!important;
}
Also you apply this css only for your homepage(if you use that page template on another pages), adding .home .no-border
Thanks!
Okay, thanks Alin I will try it.
Now I would like to take advantage of your attention to ask about another issue that i have on the same page: custom fonts. I can change the font using html on the visual composer’s text block, but I should be able to do this on theme panel – theme fonts, shouldn’t I?
Regards,
Fz
Hi,
Yes, you can use Theme Fonts to change fonts. I think that you are referring at Latest articles font for above page.
You use module 11 to display Latest Articles, so you can change posts title for module 11 from here: http://screencast.com/t/S79UcSvZrm
Result: http://screencast.com/t/JvRGWhMhiMgZ
Excerpts and Block Titles you can change from “Modules and Blocks General”: http://screencast.com/t/jzGxfRwzG2zn
Result: http://screencast.com/t/XWPuYyolaE
Thanks!
Alin, I meant if it is possible to change font above that, like in this image.
Fz
Hi,
Title from text block can be changed only with custom css: http://screencast.com/t/a91ZsAF0c
.wpb_text_column h1{
font-family: Ubuntu;
font-size: 20px;
}
.wpb_text_column h3{
font-family: Ubuntu;
font-size: 20px;
}
.wpb_text_column p{
font-family: Ubuntu;
font-size: 15px;
font-style: oblique;
}
Also you can add an extra class and customize only that text block: http://screencast.com/t/CyFOCUiLWA
Result: http://screencast.com/t/tErLYTranm
Hope this helps!