Hi,
I am trying to create 2 simple 1/2 columns using the Template Builder but have them inherit the no_margin classes, meaning I want them 50% each, instead of 47% + the 6% margin… Possibly also adding a class to them would be great as I want to create some extra styling, like a dotted border between them or smth.
How do i do that via the builder? Thanks in advance for a timely response!
Hello?
Hi!
Can you please give us a link to the website? Unfortunately, you can’t add a custom css class for column layouts. You can create a text block then add something like this:
<div class="flex_column av_one_half first custom">Content here</div><div class="flex_column av_one_half">Content here</div>
Add this on Quick CSS or custom.css:
.flex_column.av_one_half.first.custom {
margin: 0;
float: left;
clear: none;
}
Best regards,
Ismael