Link to home
Start Free TrialLog in
Avatar of HelpNearMe
HelpNearMeFlag for Afghanistan

asked on

li text formating in CSS

Hi Experts,
I am putting together a simple page with a bunch of text including  a ul with 4 li lines.  In the css I have
p, h1, h2, h3 {
      font-family:Arial, Helvetica, sans-serif;
}
 as the first entry.   It works great for the text on the page but it doesn't seem to affect the li text.

How can I inlcude the ul & li elements in the default font family declaration?

Thanks

HNM
ASKER CERTIFIED SOLUTION
Avatar of HainKurt
HainKurt
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
sory the second part should be

li {
  font-family:times new roman, corier;
}

so all elemenst will be arial, but li will be times new roman...
Avatar of HelpNearMe

ASKER

thanks!