Hi,
I have a color section with a unique ID and i use 3 columns in this color section. Each with a different background color. I want those three columns fill the entire screen width. Out of the box this isn’t possible because auf this CSS part (padding: 0px 50px;):
.container {
position: relative;
width: 100%;
margin: 0 auto;
padding: 0px 50px;
clear: both;
}
I know that i can override this with:
.container {
position: relative;
width: 100%;
margin: 0 auto;
padding: 0px 0px;
clear: both;
}
But i don’t want that globally but only for a specific color section (e.g. ID=XYZ).
How do i achieve that?
Andreas
Solved myself:
#sectionIDxyz .container {
padding: 0px 0px;
}