/*If you need more control and flexibility, add a div inside the 'Row Center', set it 100% width, and add any number of divs inside it for your header columns.
To hide the rows that are empty (Row Left and Row Right in this case)
add the following CSS (I use this in my boilerplate). This will only apply if there's nothing inside the Rows.*/
/*remove min width from empty header row*/
:is(.oxy-header-left, .oxy-header-right):empty{
min-width: 0; /* or display: none */
max-width: 0; /* or display: none */
}
/*If you use ACSS, it adds a padding to the header, I'm not sure why but I always remove it.*/
/*ACSS adds padding to header, this removes it*/
#header .oxy-header-container {
padding-left: 0;
padding-right: 0;
}