Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #507548

    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

    • This topic was modified 9 years, 7 months ago by virtualcowboy.
    #507579

    Solved myself:

    #sectionIDxyz .container {
    padding: 0px 0px;
    }

    #507686

    Hey!

    Glad you figured it out!
    Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.