Remove white from Searchbar

kenng

Member
I've move search to nav bar. Which file can I look for to remove the white around the searchbar?
 

Attachments

  • search.webp
    search.webp
    2.5 KB · Views: 30
Red is just an example you input your preference to your desired taste which you can do by throwing the following in the extra.css template.
Code:
#QuickSearch {
    background-color: red;
}
.formPopup {
    background-color: red;
}
 
Thanks Jake, I got it this time by setting it to transparent and also the active css to white. Here's the css code if someone is looking for a clue.

Code:
#QuickSearch
{
    background-color: transparent !important;
}
 
#QuickSearch.active {
    background-color: white !important;
}
 
.formPopup {
    background-color: transparent !important;
}
 
.formPopup .controlsWrapper
{
    background-color: transparent !important;
}
 
Top Bottom