[Resolved] Is something like this possible?

Home Forums Support [Resolved] Is something like this possible?

Home Forums Support Is something like this possible?

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1507284
    Kevin

    Hi, actually i test some new style for a Shop. I found this example and would love to know if this is prossible with the GPP Settings -> https://www.digitec.ch/de

    I mean the background outside the box and then create the rest of the page like widgets inside the box.

    Best Kevin

    #1507354
    David
    Staff
    Customer Support

    Hi there,

    For the contained look you could simply set in Customizer > Layout > *ALL Elements to a contained Width eg. Container, Header, Footer, Top Bar.
    Then add a top bar widget and set is background color to transparent to let the Body color to show through.

    Adding borders to the site would require some CSS.
    This CSS will add a border around the content area and keep it from contacting the edge of the viewport:

    @media(min-width: 769px) {
        body {
            margin-left: 20px;
            margin-right: 20px;
        }
    
        .site-header,
        #page,
        .site-footer {
            border-left: 4px solid #00f;
            border-right: 4px solid #00f;
        }
    
        .site-header {
            border-top: 4px solid #00f;
        }
    }

    The inner borders will depend on what content you have added. Happy to look at a site if you have it setup like the above.

    #1507369
    Kevin

    Thank you, will try this =)
    Btw. i started this morning with the Template “Spacious”, it looks a little bit same.

    #1507377
    David
    Staff
    Customer Support

    Yes – Spacious is a very good starting point!

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