• Hi guys,
    I just created for my friend a very basic website (this is the first website I created in my life) and I need some help about making my header full width. You can check the website on [ redundant link removed ]
    I would like to make the header really FULL width.
    I have a very very basic knowledge about html/css so please maybe there is another solution ? (or if not a very simple html thing to do ?)
    Thank you a lot !!!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • @wilkada – without knowing the exact builder tools, etc you are using, it looks like on any given “row” on the site that is where the limiting is coming from. For example:

    
    .row {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        margin-bottom: 0;
        max-width: 68.5rem;
        *zoom: 1;
    }

    The max-width: 68.5rem; creates a limit. If you override this part of the CSS by entering your own CSS in the Theme Customizer like this:

    .row {
        max-width: 100%;
    }

    This will make the row full width, and then it just depends that your content is large enough to span the full width.

    I hope that helps you going where you are needing to. For your first site, it is looking pretty good! Keep at it!

Viewing 1 replies (of 1 total)
  • The topic ‘Full Width Header’ is closed to new replies.