Hello,
is it able to create such nice textblock as on this page http://www.pbu-cad.de/ in the enfold theme? Or maybe so changes the backround collor of the textblocks like this: http://www.siemens.com/entry/cc/en/
Thx
Kind regards
Martin
Hey ConflateGermany!
Yes it is possible. Please turn on Custom CSS field for Avia Layout Builder elements ( see – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and customize text blocks using custom css in Quick CSS field in Enfold theme options under General Styling tab
.custom-class { padding: 10px; border: 1px solid #e2e2e2; }
Regards,
Yigit
There is alot of stuff you can edit using CSS
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
One thing you could do is to give certain layout elements a box shadow and border.
.flex_column.av_one_third.first {
box-shadow: 2px 2px 2px 0 #AAAAAA;
border:1px solid #cccccc;
padding: 0px 10px;
}
That affects all 1/3 layout sections.
If you want it for specific elements, you can add the page id to the css code (.page-id-99.flex_column.av_one_third.first) or you use custom classes (.yourClass { background-color: #cccccc}
).
To set a custom class for an element see: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
or apply the CSS to the text block directly like Yigit meniones … who was way faster then me to answer you.
Thanks!