Re: Problem with bold font not being used



On Sun, 15 May 2011 23:29:14 -0700, richard <member@xxxxxxxxxxx>
wrote:

On Sun, 15 May 2011 14:34:50 -0700, Martin wrote:

I have these entries in a .css file that is linked to several
different web pages:

body
{font-family:arial; font-weight:bold;
background-image:"../WebGraphics/background.gif"; }

table
{font-family:arial; font-weight: bold;}

But on some pages, the bold font is not being used in a table. The
only thing I can see is that these tables happen to be in a FORM.
Could that be the problem? Or should I be looking for something else?

why not try using:
form {font-weight:bold;}
if you want to be more specific, give only that item a unique class name
and style it through that class name.
Or use inline styling.

Thanks, Richard

I moved the css statements from the external file into the page's
<head> section and everything appears just fine now.

I had this same problem on another page (that used a different .css
file). Making the same kind of change fixed that one also.

Doesn't make any sense but it works.

Thanks again.
.