html list
When I try to creat an ordered list, no bullets appear. It only seems to work using the class "check" but I want a numbered list. Do I need to adjust the css for this to work?
Thanks
Tags:
When I try to creat an ordered list, no bullets appear. It only seems to work using the class "check" but I want a numbered list. Do I need to adjust the css for this to work?
Thanks
Weird, thought this was fixed, but I just checked on my end and it isn't. The list elements were reset and not redefined. Have you changed the stylesheet at all, or are you using one of the default styles included in the pack? If you haven't altered the stylesheet I can send you some updated files to overwrite the old ones, or if you prefer just the code itself to add to your stylesheet so you don't have to completely overwrite anything.
Just the code would be great - thanks!
Easier than I anticipated, apologies for the brief delay. If you add the follow to your style sheet:
ul {
padding-bottom: 10px;
list-style-type: disc;
list-style-position: inside;
}
ol {
padding-bottom: 10px;
list-style-type: decimal;
list-style-position: inside;
}
I thought it might have some effect on the menus but I guess not! If you notice that it's changed anything else undesirably let me know.
Rob D. thanx alot for the information
" ul {
padding-bottom: 10px;
list-style-type: disc;
list-style-position: inside;
}
ol {
padding-bottom: 10px;
list-style-type: decimal;
list-style-position: inside;
} "
it solve even my problem as well thanx again
by lee



