On Mon, Jun 13, 2005 at 09:23:00AM -0400, miwalsh wrote:

> I am building a web page using CGI. The page contains checkboxes,
> popup menus etc. I have been able to change the font of most of the
> page by surrounding the statements on the page with the <font
> color='color> tag. For example, some of the code might look like
> this: print "<font color='red'>This is my web page.</font>";

The <font> element is deprecated, you really should be using CSS for
this.

http://www.w3.org/Style/CSS/learning
 
> I would like to change the font of the words in the checkbox groups so that 
> they match the rest of the page. However, I don't know how to do this and I 
> can't find anything in the documentation that helps. If anyone has any ideas 
> about this I would be greatfull to hear them.

It really depends on the markup that is being generated, something
like:

legend { color: red; }
label  { color: red; }

... should do the trick if the generated markup is good.

-- 
David Dorward                                      http://dorward.me.uk


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to