Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I change font type in numbered bullets?

Status
Not open for further replies.

wndsrfgrl

Programmer
May 4, 2001
10
US
When I view my page the numbers are in Times New Roman. How do I change the font type from Times New Roman to Arial in numbered bullets?
 
Hi
in dreamweaver when you specify the fonts in a ordered list or a numbered bullets the fonts are directly applied to the
Code:
<li>
tag of the list

if you want to make the numbers in the list also of the same font then go to the code there will be <ol> overlap it with the font that you want

like this

Code:
<font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;><ol>
  <li><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>askdjlfhlk</font></li>
  <li><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>asdl;fkja;</font></li>
  <li><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>asdklfja;sldkfj</font></li>
  <li><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>asd'klafj</font></li>
</ol></font>
Unicorn11
unicorn11@mailcity.com

[red]Luck is not chance, it's toil; fortune's expensive
smile is earned.[red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top