Tagged: ALB, background color, border
I need to give the content in the right hand 1/3 column a border of #f99f32 and a background color of #fef4e8.
http://omniway.ca/site/homes/almonte-country-haven/
The affected content starts with “Visit Almonte Country Haven” and ends with the “Volunteer With Us” button. What is the best way to achieve this? (Note: I will be applying the solution to 17 other pages with exactly the same structure.)
Hey Ben!
Thank you for using the theme!
I’m not so sure if this is going to work for all the pages but please add this on Quick CSS or custom.css:
div.flex_column.av_two_third.first + div.flex_column.av_one_third {
background: #fef4e8;
border-left: 1px solid #f99f32;
padding: 10px 10px 10px 15px;
}
Cheers!
Ismael
That’s a wonderful solution. Thank you. Very clever, and I can make sure no other pages have this 2/3 + 1/3 structure.
I changed border-left to border to box the right column entirely.