I absolutely love this theme. I use it for nearly all my websites (or a slightly modified version, I prefer a block field in the top right of the head). But AWESOME!

My designer has presented me with an interesting problem

He want to place a bullet (either by list style or by background image) between the primary links in the #nav menu

You can see from this post (http://drupal.org/node/549616) I have been trying to tack this. Any help in accomplishing this would be most appreciated.

Comments

andregriffin’s picture

The default bullets for the primary links are removed by the css under the navigation section that looks like #nav ul.primary-links li {

Under that css selector, if you just remove the background and margin properties, the default bullets will show up.

netentropy’s picture

Thanks for the response, that is what I thought also but removing those properties for #nav ul.primary-links li does not make the bullets show up for me.

I even added the list-style declaration just in case

#nav ul.primary-links li, #nav ul.secondary-links li, #nav div.block-dynamic_persistent_menu li {
  /*background: none;
  margin: 0;
  padding: 0;*/
  list-style-type: circle;
}
andregriffin’s picture

Interesting. I suggest using Firefox with Firebug or the element inspector in Chrome or Safari 4 to see what's going on with the css.

If you can send me a link, I may be able to tell you whats wrong.

netentropy’s picture

IT is the link as my other post but i reloaded this particular template

http://www.bjrtechnologies.com/gamma

andregriffin’s picture

removing the background property entirely from the ul.links li { selector and adjusting the padding added the default bullets to the primary navigation.

You should have something like:

ul.links li {
margin:0 10px 0 0;
padding:0 0 0 15px;
}
andregriffin’s picture

Status: Active » Closed (fixed)
netentropy’s picture

this still did not work for me

www.inmanparkchurch.org

netentropy’s picture

got it you have to do it to #nav ul.primary-links li,
#nav ul.secondary-links li,
#nav div.block-dynamic_persistent_menu li

also