|
Posted by Costa Tropical Internet on 10/28/33 11:55
Does any of the formatting apply? Like the font color?
Is it the same in Firefox?
Internet Explorer has a nasty habit of resetting all formatting
whenever it encounters a TD tag.
I think your best option is to remove the class statement from the TD
tag and create a DIV tag around the text with the same class:
<tr>
<td>
<div class="mainpanelfooter">
*MAIN PANEL FOOTER*
</div>
</td>
</tr>
And then change the css to:
..mainpanelfooter {
vertical-align: middle;
height: 20px;
width: auto;
padding: 7px;
font-size: 80%;
color: #000000;
font-family: Verdana, Sans-Serif;
font-weight: normal;
text-decoration: none;
text-align: center;
}
Hope this helps.
-------------------------------
Soren Beck
Costa Tropical Internet and Web Design
http://www.costatropicalinternet.com
Cerebral Believer wrote:
> >
> > <tr>
> > <td class="mainpanelfooter">
> > <p>*MAIN PANEL FOOTER*</p>
> > </td>
> > </tr>
> >
> > Referenced in a stylesheet thus:
> >
> > td.mainpanelfooter {
> > vertical-align: middle;
> > height: 20px;
> > width: auto;
> > padding: 7px;
> > font-size: 80%;
> > color: #000000;
> > font-family: Verdana, Sans-Serif;
> > font-weight: normal;
> > text-decoration: none;
> > text-align: center;
> > }
> >
> > Does not appear centered (but aligned left) when I preview my page in my
> > browser? It does appear centered in Frontpage's design window, but not in
> > the preview window.
> >
> > Even if I use an <p align="center"></p> tag around the text in question,
> > the text appears as if it has merely been indented left rather than
> > centered. Any ideas what the problem could be or how to fix it?
> >
Navigation:
[Reply to this message]
|