Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help with vertical lists

Status
Not open for further replies.

dthomas31uk

Technical User
Oct 19, 2003
107
GB
Hi, Am creating vertical list.... see web page below


everything is ok, but now I would like to add a bullet icon for each of the links......trouble is the bullet icon need to be towards the right of the text. Has anyone got any ideas cheers
 
you could try a  · at the end of your anchor text.

i.e.

<a href="#"><h1>Luxury Mobile Homes in Tenerife&nbsp;&middot;</h1></a>

should do it
 
Try:
Code:
#navlist li
{
  [b][blue]list-style: disc;
  direction: rtl;[/blue][/b]
  margin: 0;
  padding: 0.5em;
  border-top: 1px solid gray;
}
 
Cheers for your advice vragbond, but have just managed to sort it doing this :

#navlist li{
background:white url("ImagesNew/bullet.gif") right no-repeat;
list-style: none;
margin: 0;
padding: 0.5em;
padding-right:1em;
border-top: 1px solid gray;
}

cheers anyway.

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top