You are here:  » Center search bar

Support Forum



Center search bar

Submitted by Al on Sat, 2008-02-16 22:34 in

Hello again,

In my front page (with featured articles) the search bar (search form) is centered. However in the search results/merchants/category listings etc the search bar is fully to the left. How can I center the search bar in all those pages?

Thank you for your help.

Al

Submitted by support on Sun, 2008-02-17 10:37

Hi Al,

The easiest way to do this is through the default.css file. The search form is displayed in a DIV with the class "searchform". In that file, look for the following CSS code:

.searchform {
}

...and change this as follows:

.searchform {
  text-align: center;
}

Don't forget to CTRL-F5 etc. to refresh the CSS in your browser (or delete browsing history) so that the new CSS is picked up...

Cheers,
David.

Submitted by Al on Wed, 2008-02-20 18:35

It works... ;-)

Thank you David.