Forum Moderators: not2easy
I am using CSS to control font size etc, the problem I have is that the body font size doesn't seem to be working when I run my site, in the designer it works , but when I run my page the size of the default font is smaller, why would this be the case, what is the problme.
Any advice is appreciated, thank you.
body {
font-size: 10pt;
font-family: Arial;
color: #FFFFFF;
margin-top:0cm;
background: #6A7D96;
}
If your site uses a lot of tables, that might be the problem. Try declaring it like this:
body, td {
font-size: 10pt;
font-family: Arial;
color: #FFFFFF;
margin-top:0cm;
background: #6A7D96;
}