OT: XHTML coding question

2011-02-07 Thread Mark Jarvis
Any web monkeys out there? I'm using: !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 TRANSITIONAL//EN" "http://www.w3c.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" I have the following in my css file: p.med_web { font-size: 150%; } The following works well. p class="med_web"blah blah blah/p

Re: OT: XHTML coding question

2011-02-07 Thread Eric Cope
The p.med_web applies only to p tags with the class = 'med_web'. If you want to generalize, then change your css to : .med_web{ ... } Eric On Mon, Feb 7, 2011 at 7:35 PM, Mark Jarvis m.jar...@cox.net wrote: Any web monkeys out there? I'm using: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0

Re: OT: XHTML coding question

2011-02-07 Thread Mark Jarvis
That did it! Thanks! -mj- Eric Cope wrote: The p.med_web applies only to p tags with the class = 'med_web'. If you want to generalize, then change your css to : .med_web{ ... } Eric On Mon, Feb 7, 2011 at 7:35 PM, Mark Jarvis m.jar...@cox.net wrote: Any web monkeys out