XF 1.5 Search, New post overlap

You removed float:left from #logo, which caused search bar container to be placed below logo instead of on right side of it. There are 2 ways you can fix that:

1. Put back float:left to #logo
2. Add this to extra.css
Code:
.headerSearchBar #QuickSearch { top: 0; }
Adjust that top value as needed. To center search box set value to -98px
 
You removed float:left from #logo, which caused search bar container to be placed below logo instead of on right side of it. There are 2 ways you can fix that:

1. Put back float:left to #logo
2. Add this to extra.css
Code:
.headerSearchBar #QuickSearch { top: 0; }
Adjust that top value as needed. To center search box set value to -98px
I put the extra.css code and nothing changed. Where do I put: float:left to #logo at?

Edit: I just unchecked "Show search bar in header" and it fixed the problem.
 
Last edited:
Top Bottom