[ARCHIVED] How to make the numbers in a numbered list bigger?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
When I make a numbered list in the instructions for an assignment, the numbers themselves are always 12 pt font no matter how big the text is. This problem occurs in this text box too:
- example
- example
- example
- example
You can see that the numbers stay the same size. This makes the numbered list button useless for writing in any font except 12. Is there a way to fix this? (besides just typing out numbers instead of hitting the numbered list button)
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, you can fix this for your numbered lists. You will need to use the HTML view.
In html view you should be able to find the numbered list without the actual number but the text of each line preceded by <li> and the line above the entire list as <ol>
You can adjust the font size of all of the numbers by changing <ol> to <ol style="font-size: 18pt;"> (replace 18pt with your desired size)
You can adjust the font size of a specific number by changing <li> to <li style="font-size: 18pt;"> (again, replace 18pt with your desired size)
I have very limited html skills, but I have seen @James describe font size adjustments in detail. It was somewhere I cannot place in this new community. I'm sure he could offer useful tips that go beyond this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I was probably bemoaning that Canvas uses point sizes instead of relative sizes for changing the size.
If you want all of the items to be the same size, then apply the font-size style to the ol or ul elements. If you want it to apply to individual items within the list (item 2 is a different size than item 1), then apply the font-size style to the li element.
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.