ElkArte Community

Elk Development => Theme development => Topic started by: Allan on September 13, 2014, 08:06:08 pm

Title: index.template
Post by: Allan on September 13, 2014, 08:06:08 pm
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.
Title: Re: index.template
Post by: emanuele on September 16, 2014, 03:18:52 am
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.