Hi,
Please set also border style even you use border in text block, row or column – http://screencast.com/t/UxplZ92k8 – http://screencast.com/t/xL7p7qJE
Thanks!
Hi,
What version of Visual Composer do you use?
I have checked this with the latest version provided with the theme and did not found any issues. Also you can check this without any plugins active, leave just Visual Composer active, clear cache and check again. Let me know!
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Hi,
Please send an email at contact@tagdiv.com and provide wp-access so we can take a look, also paste a link to this topic so we can know who you are and what your issue is.
For text block the font family can be changed for body and it will be applied also on text block content – http://screencast.com/t/qRp1UjSWa9r unfortunately for font size, style you will have to use custom css as there is not option in Theme Panel – http://screencast.com/t/ol5bsfw7vd25 or change to html editor and add inline css – http://screencast.com/t/xos8wa1J2Iw9
.wpb_text_column p {
font-size: 20px;
line-height: 20px;
}
Thanks!
Hi,
Please try to add border like this: http://screencast.com/t/PzoxdCqFP – http://screencast.com/t/jzXNarSXOx7 so you can either use those settings and use it like that or you can use custom css and set a specific class for the text block or the VC container you use and apply custom css using that class.
To use custom css for customizing VC elements you need to style a custom class to the column/row/element you need to style, like this: http://screencast.com/t/7JAB7kdJ281E then use custom css like this to apply the border and some padding: http://screencast.com/t/CJaETDd2f
Add the custom css you’ve made in theme panel > custom css section:
.custom_css_class {
border: 1px solid red;
padding: 10px
}
Thanks!