Tagged: Colour section, image, overlay, padding
Below the heading I adjusted the image so that it overlays the header, but now I want to adjust the bottom padding so that it flushes with the end of the hand.
I already tried:
.home #av_section_2 .content {
padding: 0;
}
But this doesn’t work. How can I do it? :)
Hey transformmedia,
Try to replace this css code you have from:
.overlapping-image {
position: relative;
top: -80px;
}
to:
.overlapping-image {
margin-top: -80px !important;
}
Hope this helps.
Best regards,
Nikko
Awesome, thank you very much!! :-)