How can I theme the links that local menu provides?
I'm using a zen theme and local menu does not automatically take the navigation block's formatting.
I can apply the look I want by using sidebar-right-inner in my css, but that screws up something else.
Does the block have a div name I can use in the CSS?

Thanks very much,
JR

Comments

Evolver’s picture

Get yourself Firefox and Firebug, you'll never look back.

You can usually target specific blocks - like #block-block-9

Now if you remove/recreate that block or place it somewhere else it may change what number it is so i'd be wary of that.

An example of what i have used in the past:

#header #block-block-9 {
float:left;
padding-left:55px;
padding-top:8px;
}