 
	
		
		
		
		
			
Viewing 6 posts - 1 through 6 (of 6 total)
	
- 
		AuthorPosts
- 
		
			
				
May 15, 2024 at 4:34 pm #1443696May 16, 2024 at 6:40 am #1443814Hey nebuddlho, Thank you for the inquiry. You can add this css code to adjust the margins on both sides of the header container. @media only screen and (min-width: 990px) { /* Add your Desktop Styles here */ #header_main.container_wrap_logo .av-logo-container { margin: 0 50px; } #header_main.container_wrap_logo #custom_html-4 { margin-right: 50px; } }Best regards, 
 IsmaelMay 16, 2024 at 4:04 pm #1443902Hello, thank you, but that doesn’t exactly align the items to the page grid. May 17, 2024 at 7:56 am #1444025Hi, Thank you for the update. We may need to create a new container inside the header and place the logo and widgets inside. Please add this code to the functions.php file: function ava_custom_script_header_container() { ?> <script> (function ($) { function g() { var newContainer = $('<div>', { class: 'container' }); $('#header_main').children('.widget, .av-logo-container, .cart_dropdown').appendTo(newContainer); $('#header_main').append(newContainer); } $(document).ready(function () { g(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_header_container');Then include this css code to adjust the maximum width of the new container: #header_main > .container { max-width: 1360px; }Best regards, 
 IsmaelMay 20, 2024 at 4:47 pm #1444770Thank you, 
 looks good.Best regards May 20, 2024 at 7:30 pm #1444785
- 
		AuthorPosts
Viewing 6 posts - 1 through 6 (of 6 total)
	
- You must be logged in to reply to this topic.
