Tagged: columns
I know the maximun columns allowed is currently 1/5. But I need to add another item in the same section, therefore I can’t add the sixth column via Avia Layout Builder. Is there any trick to do that? Without miss the responsive feature.
Here is the issue:
https://www.dropbox.com/s/r06tktxl4d9owf7/6_columns.jpg
Thanks in advance!
Hi,
Use the 1/5 element then add this code on your custom.css or Quick CSS
.flex_column.av_one_fifth.first.avia-builder-el-first {
margin-left: 0 !important;
}
.flex_column.av_one_fifth.first.avia-builder-el-last {
margin-left: 6%;
float: left;
clear: none;
margin-top: 0;
}
div .av_one_fifth {
margin-left: 6%;
width: 10%;
}
Regards,
Ismael
Worked pretty well with some tweeks, thanks a lot for the quick support!