Jump to content

HELP! change header drop down menu size?


Recommended Posts

My header doesn't change color after I apply some header background code to it. It doesn't do anything when I'm using default RED/WHITE color.

 

Header: I'm trying to achieve something like attached image. please help! been googling the prestashop forum but couldn't find a solution!

 

Thanks,

post-929466-0-43682500-1424093517_thumb.png

Link to comment
Share on other sites

For header background colour goto themes/YOUR-THEME/css/global.css around line 5269 you will find


header {
    background: none repeat scroll 0 0 white;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
}

To make the font smaller on dropdown categories goto themes/YOUR-THEME/css/modules/blocktopmenu/css/superfish-modified.css around line 144 you will find

.sf-menu > li > ul > li > a {
    color: #333333;
    font: 600 16px/20px "Open Sans",sans-serif;
    text-transform: uppercase;
}
Edited by mickeyboy1 (see edit history)
Link to comment
Share on other sites

 

For header background colour goto themes/YOUR-THEME/css/global.css around line 5269 you will find


header {
    background: none repeat scroll 0 0 white;
    padding-bottom: 15px;
    position: relative;
    z-index: 1;
}

To make the font smaller on dropdown categories goto themes/YOUR-THEME/css/modules/blocktopmenu/css/superfish-modified.css around line 144 you will find

.sf-menu > li > ul > li > a {
    color: #333333;
    font: 600 16px/20px "Open Sans",sans-serif;
    text-transform: uppercase;
}

the drop down menu works great. how do i code it to highlight with a red background then white front when hover?

 

the header code, i couldn't locate it in my global.css. currenly using default theme running on 1.6.0.11 with live configurator red to white theme. I want it similar as when you hover over top horizontal menu.

 

Thanks a lot!

 

 

I have another issue not able to turn on left column in Product because there isn't an option available in themes/advanced setting. any solution could enable this in a code? 

Link to comment
Share on other sites

  • 2 weeks later...

sorry for the late reply.......to change the subcategory to be highlighted red background with white lettering on hover then you need to goto themes/YOUR-THEME/css/modules/blocktopmenu/css/superfish-modified.css around line 145 look for this code

.sf-menu > li > ul > li > a:hover {
      color: #515151; } 

and change it to 

.sf-menu > li > ul > li > a:hover, .sf-menu > li.sfHoverForce > a {
    background: #333333;
    border-bottom-color: #666666;
    color: white; }

As for the column problem have a read through this thread

Link to comment
Share on other sites

  • 3 weeks later...

sorry for the late reply.......to change the subcategory to be highlighted red background with white lettering on hover then you need to goto themes/YOUR-THEME/css/modules/blocktopmenu/css/superfish-modified.css around line 145 look for this code

.sf-menu > li > ul > li > a:hover {
      color: #515151; } 

and change it to 

.sf-menu > li > ul > li > a:hover, .sf-menu > li.sfHoverForce > a {
    background: #333333;
    border-bottom-color: #666666;
    color: white; }

As for the column problem have a read through this thread

 

 

I had another problem... when top menu is being hover over, the sub drop down menu have a huge gap in between. here's a link to show the problem is.. how do I move it up a bit? http://precisiondepot.ca/dropdown.png 

 

Any solution to fix it?

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...