I have a site under development here: http://osteopathielaurentides-com.w...winsvr.net
The .Normal text is too small (11px) and I want to make it 14px.
Using the Webdeveloper toolbar in Firefox, I can see the following when I View Style information:
http://osteopathielaurentides-com.w...winsvr.net/Portals/_default/Skins/Alldnnskins-10421/skin.css
th, td, div (line 63)
{
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size: 11px;
color: #000000;
}
th, td, div (line 63)
{
font-family: Verdana,Arial,Helvetica,sans-serif;
font-size: 11px;
color: #000000;
}
.Normal (line 60)
{
font-size: 11px;
color: #7f7f7f;
}
.Normal (line 60)
{
font-size: 11px;
color: #7f7f7f;
}
http://osteopathielaurentides-com.w...winsvr.net/Portals/_default/default.css
.Normal, .NormalDisabled (line 92)
{
font-family: Tahoma,Arial,Helvetica;
font-size: 11px;
font-weight: normal;
}
http://osteopathielaurentides-com.w...winsvr.net/Portals/0/portal.css
.Normal (line 1)
{
font-size: 14px;
}
So, you see I have edited the portal.css file to change the font-size to 14px. However, it does not override the skin.css setting. What am I doing wrong?