Forums

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

Home Forums CSS CSS: How to place/position custom graphic bullets “between” a horizontal list Re: CSS: How to place/position custom graphic bullets “between” a horizontal list

#72635
akurtula
Participant

I normaly do this:


ul li span{
width:10px; height:10px;
background-image:url();
}

however I personaly like the line to seperate the links; like:


ul li a{
width: 200px;
border-right:1px black solid;
}

to style the first element you do this (I think):

ul li a:first{}