Simple bullets HTML / CSS block
SmugN00b
Registered Users Posts: 6 Beginner grinner
I need to add a HTML block with bullets.
Now I undertsand the whole ul/li structure, but what CSS class can I call that will directly reference styles in use for heading? (ie. h1, h2, normal text, etc.?)
Thanks
Now I undertsand the whole ul/li structure, but what CSS class can I call that will directly reference styles in use for heading? (ie. h1, h2, normal text, etc.?)
Thanks
0
Comments
If that isn't your question, please post more info.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
•
•
I find it easier to add a div and use margin-left for indent rather then a list.
<div style="margin-left: 10px;">
• text
• text
</div>
<div style="margin-left: 10px;">
• text
• text
</div>
The only problem is the wrapping of long lines to the bullet and not extra indent to the "text" like a list would do.
My Website index | My Blog
ul {
list-style: outside;
margin-left: 24px;
padding: 5px 0;
}