O
OC
I've got a website developed with FP2000 that also uses an external style
sheet to manage several of the design elements. One of the webpages
includes an unordered list. I would like for the list to not be indented at
all, with the bullets directly below the left margin of a standard paragraph
of text. All of the content is included in a table cell. I was able to
accomplish that when viewed in IE, using the following CSS snippet, but both
NS and FireFox displays the bullets indented. Any suggestions for getting
consistency with this content across browsers? Is there an easier way
(correct way?) to eliminate the bullets being indented? Thanks for your
help. URL is http://www.plantationrivertours.com/tours.htm
UL
{
list-style: disc; list-style-position: outside;
margin-left: 0.2in;
}
sheet to manage several of the design elements. One of the webpages
includes an unordered list. I would like for the list to not be indented at
all, with the bullets directly below the left margin of a standard paragraph
of text. All of the content is included in a table cell. I was able to
accomplish that when viewed in IE, using the following CSS snippet, but both
NS and FireFox displays the bullets indented. Any suggestions for getting
consistency with this content across browsers? Is there an easier way
(correct way?) to eliminate the bullets being indented? Thanks for your
help. URL is http://www.plantationrivertours.com/tours.htm
UL
{
list-style: disc; list-style-position: outside;
margin-left: 0.2in;
}