To properly present text, since i cant put your layout elements inside a layout element?, in something resembling what is considered a readable line length:
http://baymard.com/blog/line-length-readability
I can gain generic control with say:
.avia_textblock {
clear: both;
margin-left: 10%;
width: 80%;
How to apply that at larger resolutions only, say >990?
And to limit where this is happening, would this be correct route?:
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Hi aribann!
To apply that style to > 990 you need to use media queries, here is the snippet.
@media only screen and (max-width:990px){ //place your styles here }
To limit it, you can use the class the wordpress applies to the body tag, and use that one e.g. .body-class-from-wp-page .your-class {}
Regards,
David