5 answers
It is already displaying above the megamenu. For your reference attached a image below
how to put the logo and the search bar above the mega menu? Like the website http://www.skeino.com
So that we can try to best assist you, please provide the url of the site you’re working on
I’m working on http://www.oliarts.com.br
I’m working on http://www.oliarts.com.br
To reposition your search box . . . .
Within file path —> /skin/frontend/default/jm_crafts/css/styles.css
at line 564, you will see the following:
Code:
#ja-search { border-left: 1px solid #EEEEEE border-right: 1px solid #EEEEEE top: 0px; min-height: 60px; position: absolute; right: 179px; width: 276px; z-index: 1000; }
Modify as follows:
Code:
#ja-search { border-left: 1px solid #EEEEEE border-right: 1px solid #EEEEEE bottom: 30px; min-height: 60px; position: absolute; right: 179px; width: 276px; z-index: 1000; }
You may also wish to delete the "border-left" and "border-right" properties -- as the side borders look a little out of place when the search box is repositioned.
For the kind of thing you’re describing for your logo and main nav, try this . . .
Within file path —> /skin/frontend/default/jm_crafts/css/styles.css
at line 851, modify as follows:
Code:
#ja-mainnav { float: left; margin: 50px 0 0 -100px; padding: 0; }
That should, at least, get you going in the general direction of what you were describing.