XF 1.2 Moving the search bar

Jagger433

Member
I have already searched the forums to look for a solution, but have failed in my quest. I have tried adding the following code to EXTRA.css but it didn't work.

#QuickSearch {
top 251.5px;
}

Moving Search Bar.webp
 
Did you miss the colon between the property and it's value?

Code:
#QuickSearch {
top: 252px;
}

If it didn't work, try adding position: absolute;
 
Top Bottom