Forums
This topic is locked
Dreamweaver MX & Paragraph CSS file
18 Feb 2008 05:06:43 Malcolm X posted:
Hi there, I have created an Unordered List in a html document which seems to work fine.We have set the "Paragraph" format font to be Verdana which is connected to the CSS file.
The text comes up as Verdana but for some reason, the numbers in the Unordered list still show as the old default font which I beleive is Times Roman.
Is there somewhere where I can change the Unordered List font to Verdana as well?
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #444444;
}
Cheers
Replies
Replied 18 Feb 2008 12:48:11
18 Feb 2008 12:48:11 Javier Castro replied:
your list should be like:
ul {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #444444;
}
Javier
"I'm a slow learner and I forget fast" grandpa
DW | FW | ASP | HTML | CSS
ul {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 13px;
color: #444444;
}
Javier
"I'm a slow learner and I forget fast" grandpa
DW | FW | ASP | HTML | CSS