Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Bullets show up differently in Safari and Firefox Re: [Solved] Bullets show up differently in Safari and Firefox

#73760
diablero13
Member

use a background-image, for example:

Code:
*{margin:0;padding:0}

#navigation ul {list-style:none}

#navigation ul li {padding-bottom:2px}

#navigation ul li a, #navigation ul li a:visited {
background:#F1F1F1 url(“http://www.viggoknudsen.com/test/bullet.png”) 5px 10px no-repeat;
color:black;
display:block;
font:12px/17px Arial;
padding:5px 0 5px 18px;
text-decoration:none;
}
#navigation ul li a:hover {background-color:#E1F0A1}