Hi
Question: How I can change the width of the column in Avia Layout ? I have a page divided 3/5 and 2/5 its 60% to 40 %. I want to change it to 55% to 45 %. Is it possible ?
the for help.
Hi msulecki!
Yes, that would be possible using custom CSS. Please turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your column elements a two different class and then post the link to your page and point out your elements.
Cheers!
Yigit
The for the tip.
So I add the avia theme support. But what exactly write in custom css class to make the column 55 % ? :)
Hey!
You just insert CSS class there and not CSS code. So you could insert “my-three-fifth” for 3/5 column element and “my-two-fifth” for 2/5 column element. Then you can add following code to Quick CSS in Enfold theme options under General Styling tab
.my-three-fifth { width: 55%; margin: 0; }
.my-two-fifth { width: 45%; margin: 0; }
Cheers!
Yigit
thx for help :)