example css indented bullet
RH11 webhelp
Please help me correct our CSS code to indent the bullets.
This is how the list looks:
* item one
* item two
This is how it should look (the bullets line up, they are not multilevel):
* item one.
* item two.
This is our CSS code. :
}
.bulletname}
list-style-type: outside disc;
margin-top: 2px;
margin-bottom: 4px;
margin-left: 18px;
font-size: 10pt;
font-family: arial;
A friend indented them in HTML with div. But does div go in css, which has no <ul> tag?
Thank you!
