I’m trying to get an image to stick to the bottom of a color section with no padding at 100% width.
Hi ghrahams!
To display color section 100%, please refer to this post – http://kriesi.at/documentation/enfold/color-section-with-100-container/. Then you can edit your color section element and choose to display no padding. If that does not help, please post a screenshot and show the changes you would like to make so we can provide you more accurate solution
Best regards,
Yigit
Thanks a lot for the guidance. I wanted to get a 100% width image to absolute positioning at the bottom of a color section
This worked:
I created an ID for the color section “fullcs” and added the following code to my child themes custom styles:
#fullcs .container {
width: 100% !important;
max-width: 100%;
padding: 0;
margin: 0;
}
#fullcs .avia-image-container {
position: absolute;
left:0px;
bottom:0px;
}