Topic: header menu 'bullits'

for my header menu i want to put some bullits in front of every menu-item, but when i add it to the source file of the header it doesnt seem to work.
can anybody tell me how i can add such a bullit automaticaly when another item is added in the admin section.?

You're satisfied with something ([img]http://forum.soulcreeper.net/img/smilies/windows.png[/img]) untill you can get something better ([img]http://forum.soulcreeper.net/img/smilies/apple.png[/img])

2

Re: header menu 'bullits'

Do it via CSS.

http://www.alistapart.com/articles/taminglists/

Re: header menu 'bullits'

yes, i know. i've already tried that one with the list-style-type thingy, but i can't seem to get it working.
the thing i tried was:

div#brdmenu li a {
    list-style-type: disc;
}

and also tried to remove the text-decoreation: none thingy from the div#brdmenu li a statement.

does anyone know what does work?

You're satisfied with something ([img]http://forum.soulcreeper.net/img/smilies/windows.png[/img]) untill you can get something better ([img]http://forum.soulcreeper.net/img/smilies/apple.png[/img])

4

Re: header menu 'bullits'

You are wasting you time trying to use bullets. The list items are set to display:inline to make the list horizontal so bullets won't work. You might get them to work if you reconfigure the list items to display:block and then float them but I doubt you will get very good resuts in all browsers. The easiest solution is to use graphic bullets. Just give each list item a background image and then enough left padding so the text doesn't overlap the image.

Note: You apply bullets to the list item, applying them to the "a" will never work.

Re: header menu 'bullits'

Paul wrote:

Just give each list item a background image and then enough left padding so the text doesn't overlap the image.

i'll just do that when i get home. thnx anyway.

You're satisfied with something ([img]http://forum.soulcreeper.net/img/smilies/windows.png[/img]) untill you can get something better ([img]http://forum.soulcreeper.net/img/smilies/apple.png[/img])

Re: header menu 'bullits'

oke, i got it all worked out right now. got every menu item to have that bullit in front of them. but now i've got this problem of removing the standard bullit behind every item.... can somebody help me out with that?

You're satisfied with something ([img]http://forum.soulcreeper.net/img/smilies/windows.png[/img]) untill you can get something better ([img]http://forum.soulcreeper.net/img/smilies/apple.png[/img])