jamesgrayking
11-03-2009, 07:03 PM
I have designed a website in drupal and for the most part it has gone well. I have been asked to make the font on every page aside from the front bigger now however. On the front I have a separate css rule:
.fronttable {
border:0px;
font-family: verdana, Helvetica, sans-serif;
font-size: 1.0em;
text-align: left;
color: #133c63;
line-height:normal;
font-weight:normal;
margin-bottom:10px;
padding-bottom:9px;
}
that is referenced by
class="fronttable"
in the table cell (i do not want it affecting every cell)
However, when i then change the body size the table cell also changes. According to firebug it is picking up some of my table style, but inheriting other parts, namely size, from the body class. Does anybody know how to stop this from happening? the site is at www.fidelitypayment.com
Thanks so much!
.fronttable {
border:0px;
font-family: verdana, Helvetica, sans-serif;
font-size: 1.0em;
text-align: left;
color: #133c63;
line-height:normal;
font-weight:normal;
margin-bottom:10px;
padding-bottom:9px;
}
that is referenced by
class="fronttable"
in the table cell (i do not want it affecting every cell)
However, when i then change the body size the table cell also changes. According to firebug it is picking up some of my table style, but inheriting other parts, namely size, from the body class. Does anybody know how to stop this from happening? the site is at www.fidelitypayment.com
Thanks so much!