How to make sure Left Header stay within content width?

Hi guys, I want to create a left sidebar style header for a site. When I set the Header location to Left it adds the header to far left of the screen.

But I want it to stay within the site content width. How can I achieve this?

Thank You

Hi,
I believe you also asked the same question by email, to which I have already replied.

Copy & paste:

Unfortunately, this functionality is not directly possible because the header, main, and footer are located directly in the body and not in a wrapper.

However, you can wrap them in the functions.php of your child theme and use CSS grid for your site wrapper, for example.

Keep in mind that these are advanced techniques, so they may be too difficult depending on your level of knowledge.
​
​SOLVED: How to add wrapper div around entire page content?
​
add_action(‘bricks_before_site_wrapper’, function() {

echo ‘

’;

});

add_action(‘bricks_after_site_wrapper’, function() {

echo ‘

’;

});

Best regards,
timmse