Jump to content

Move top menu up


Recommended Posts

You could try this........

 

In themes/YOUR_THEME/css/global.css

 

Find ....

 

#search_block_top { around line 16407

#block_cart_top { around line 16395

header .row #header_logo { around line 10607

 

And add

margin-top: -50px;

To all three places in the global.css file.....

 

 

 

You will then notice that the topmenu has also raised up so you need to goto

 

themes/YOUR_THEME/css/modules/blocktopmenu/css/blocktopmenu.css

 

and find #block_top_menu {

 

Then add

margin-top: 50px;

You will get something like this

 

 

post-535854-0-48611700-1423340345_thumb.jpg

 

You can play with the figures (50px) to suit your needs just remember whatever you minus on the global.css, you have to plus the same amount in blocktopmenu.css

Edited by mickeyboy1 (see edit history)
Link to comment
Share on other sites

Hmm i see, the class of the search box and cart box is overlapping the above links

 

May have to make a new class for them and code some css to position them where you want

 

EDIT:

 

For the search block remove the following from global.css

    margin-top: -50px;
    padding-top: 50px;
    z-index: -1;

Also remove the following from themes/YOUR-THEME/css/modules/blocksearch/blocksearch.css

padding-top: 50px;

 

 

 

Still working on cart block....

 

EDIT2:

 

For the cart block remove the following from global.css

    margin-top: -50px;
    z-index: -1;

Then goto themes/YOUR_THEME/css/modules/blockcart/blockcart.css  and find

#header .shopping_cart {
    float: right;
    padding-top: 50px;
    position: relative;
}

and remove padding-top: 50px;

 

That should do it

Edited by mickeyboy1 (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...