Jump to content

Customizing Blacktopmenu


Recommended Posts

So I posted in the hire section over an hour ago and no views. trying too customize the top horizontal menu has been a pain in the butt. Need css for font color change on active & adding image to submenu drop down & remove the triangle on top menu drop down.

 

I am trying to get my prestashop to match my wordpress template.

 

i checked out advanced top menu and every attempt to customize with the demo back office produced no changes to the preview. So I don't know if it will be bale to produce the look, feel and behavior I am trying to get.

 

Any help would be super appreciated.

Link to comment
Share on other sites

Override /modules/blocktopmenu/css/superfish-modified.css, after line 93, add:

 

(i.e. if it doesn't exist yet, copy this file to /themes/<your theme folder>/modules/blocktopmenu/css/superfish-modified.css )

 

 

.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {

background: #4E4E4E;

color:purple; // <-- add this line (choose any colour, of course...)

}

 

The arrow images come from same file, around line 115:

 

.sf-sub-indicator {

position: absolute;

display: block;

right: 10px;

top: 1.05em; /* IE6 only */

width: 10px;

height: 10px;

text-indent: -999em;

overflow: hidden;

background: url('../img/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */ // change into new picture as needed.

}

 

(current picture is found in: /modules/blocktopmenu/img/arrows-ffffff.png )

 

this this should be it. If I misunderstood/missed something, it's probably close to these modifications, so have a look around here.

 

Hope this helps,

Pascal

  • Like 1
Link to comment
Share on other sites

  • 1 month later...

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