G
Guest
Hi All,
I have a theme with a Style.css in which I have defined a style rule for the
body element :
body
{
min-width: 780px;
margin: 0;
padding: 0;
border: 0;
text-align: center;
font-family: Verdana, Arial;
font-size: 8pt;
color: Black;
background-color: Ghostwhite;
}
I then have a content page based on a master page that implements the theme.
All rules of the body style are applied, except for the font-size.
Here's the html-output of the browser for a simpe page:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head><title>
Untitled Page
</title><link href="App_Themes/Forest/Styles.css" type="text/css"
rel="stylesheet" /></head>
<body>
<form name="aspnetForm" method="post" action="Default.aspx"
id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwULLTEwMDUyNjYzMjhkZE+MtGgeO3PmpQonZYA4J/ffFMq1" />
</div>
<table width=920 height=100% align=center cellpadding=0 cellspacing=0>
<tr height=1>
<td> </td>
</tr>
<tr height=150>
<td class="app_header"> </td>
</tr>
<tr height=100%>
<td width=100% valign=top style="border-left:gray 1px
solid;border-right: gray 1px solid">
<table>
<tr>
<td> col 1 </td>
<td> col 2 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100%" class="footerTable">
<tr>
<td align="center">
simple footer content
</td>
</tr>
</table>
</td>
</tr>
<tr height=1>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
Where you see col1 and col 2, the text does not appear in the correct
font-size??
Anyone any ideas?
thx,
Tom
I have a theme with a Style.css in which I have defined a style rule for the
body element :
body
{
min-width: 780px;
margin: 0;
padding: 0;
border: 0;
text-align: center;
font-family: Verdana, Arial;
font-size: 8pt;
color: Black;
background-color: Ghostwhite;
}
I then have a content page based on a master page that implements the theme.
All rules of the body style are applied, except for the font-size.
Here's the html-output of the browser for a simpe page:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head><title>
Untitled Page
</title><link href="App_Themes/Forest/Styles.css" type="text/css"
rel="stylesheet" /></head>
<body>
<form name="aspnetForm" method="post" action="Default.aspx"
id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE"
value="/wEPDwULLTEwMDUyNjYzMjhkZE+MtGgeO3PmpQonZYA4J/ffFMq1" />
</div>
<table width=920 height=100% align=center cellpadding=0 cellspacing=0>
<tr height=1>
<td> </td>
</tr>
<tr height=150>
<td class="app_header"> </td>
</tr>
<tr height=100%>
<td width=100% valign=top style="border-left:gray 1px
solid;border-right: gray 1px solid">
<table>
<tr>
<td> col 1 </td>
<td> col 2 </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100%" class="footerTable">
<tr>
<td align="center">
simple footer content
</td>
</tr>
</table>
</td>
</tr>
<tr height=1>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
Where you see col1 and col 2, the text does not appear in the correct
font-size??
Anyone any ideas?
thx,
Tom