• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HTML Question

Ilmater

Diamond Member
If I'm making a list with numbered bullets, how can I change the font of the numbers? I have the font of the table set correctly and the information after every numbered bullet is correct, but the numbers themselves are off. Anyone know?

Edit: Also, currently the bullets show up like this:

1.
2.
3.

Is there a way to change it to:

1)
2)
3)

???
 
From the horse's mouth: http://www.w3.org/TR/html401/struct/lists.html

The code below should let you change the font type (using a style. There doesn't appear to be a way to specify a font without one.)

It doesn't look like you can directly specify what the 'separator' character for a numbered list is (or if there is one at all!) However, I'm not a style sheet guru, so maybe there is some way to do it.
 
i havent tried it, but have you tried styling that with css?

something to the effect of
<style >
ol {
font-family: your-font-here, default serif or sans-serif;
}
</style>
i the head section?

I am at work so I know i am missing some attributes in the style tag and i cant remember the exact format for those

I know you can change the bullet to any image for an unordered list with css but never have tried an ordered list


wow - a similiar post the same time as mine! - Matthias99's method should work as that is very similar to the command to change the bullets for an <ul> - my way now that i think of it would only change the font of the text in the list
 
Bump to see if anyone else knows of a way to get the ")" instead of a "." for a separator.

Thanks for the help guys, very much appreciated.
 
Back
Top