Archived topic
Logo on the left search on the right
5 replies · Started by johnzoro on May 4, 2022
should be easy.
if i want my logo on the left and a search on the right?
logo is fine but when I add the search widget to the header widget area it just aligns next to the logo on the left and I want it to be right aligned so it's like the other side
does that make sense?
Hi there,
can you share a link to your site where i can see the issue ?
sure here you go david.
In Customizer > Additional CSS there is this CSS:
.header-aligned-right:not([class*="nav-float-"]) .header-widget {
margin-right: auto;
margin-left: 0;
order: -10;
}
Which looks to be related to having an advert inserted (?).
If its still required, then change it to:
.header-aligned-right:not([class*="nav-float-"]) .header-widget {
margin-left: auto;
order: -10;
}
Nice one david.
I just deleted the additional CSS
Glad to hear that!