Was curious if there was an easy way to make the background of just the middle 1/3 column on this page black:
http://columbus-telephone.com/landing/
Thanks, love the theme!
http://kriesi.at/documentation/enfold/custom-css-and-quick-css/
#top.page-id-1847 .av_one_third.first + .av_one_third {
background: black;
margin-left: 5%;
margin-right: -1%;
padding-left: 1%;
padding-right: 1%;
width: 31.3333%;
}
If you only want to color the background, you can remove the lines for margin, padding and width.
But i thought it might look better with the padding.
cheers
Hey!
Please try the code Flikk posted above and if that does not help, please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.flex_column.av_one_third.avia-builder-el-5.el_after_av_one_third.el_before_av_one_third {
background-color: black;
padding: 10px;
}
Cheers!
Yigit
Awesome. Thanks, guys. I can work with this.