Skip to main content
Topic: index.template (Read 2065 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

index.template

I wanted to move the quick search in the header to the left of the user account in the main_menu. When I try to do it I keep getting the template error on the forum. Any help would be great.

Re: index.template

Reply #1

I missed that one....

And the login bar on the right?

If you want to do it on a new theme
index.css:
Code: [Select]
#top_section_notice { 
float: left;
to:
Code: [Select]
#top_section_notice { 
float: right;

and:
Code: [Select]
#search_form { 
float: right;
to:
Code: [Select]
#search_form { 
float: left;

Otherwise you can just add:
Code: [Select]
#search_form { 
float: left;
}
#top_section_notice {
float: right;
}
to your custom.css.
Bugs creator.
Features destroyer.
Template killer.