Viewing 3 reply threads
You must be logged in to reply to this topic.
Could you send the CSS code that would allow me to make the font size bigger in the Separator with Text plugin. Thanks much
Hello,
The Separator with Text is not a plugin. It’s an element of Visual Composer plugin. To edit the text size of it, please add this code into your custom css box:
.vc_separator h4 {
font-size: 25px;
}
Edit the value to your wish.
Best regards!
I am trying to do this on the Tower theme. I just tried adding this code to both the custom CSS box and the stylesheet.css, and it didn’t work.
In fact, adding any code to the Custom CSS box does NOT work.
Any other suggestions?
Trying it on this page: https://catenacreations.net
Hello,
@catenacreations,
That’s because you have another theme and styling. If you do not find the right css classes to edit, then what ever cod eyou add (either in custom css box or style.css file) will not have any effect. Try this code intead:
.vc_separator.vc_separator_align_center h4 {
font-size: 34px !important;
}
Result screenshot.
Best regards!
You must be logged in to reply to this topic.