Fonts change size

  • Thread starter Thread starter MrLou
  • Start date Start date
M

MrLou

I design a beautiful page in FP2003, but when I preview it in IE 8 all of the
fonts are very small and unrteadable. Same when I publish it to the web
site. What's going on??
Thanks
MrLou
 
Display and rendering problems can only be diagnosed reliably if we can see
the page - a link to the published page will help.

--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 
I do not see any problems with font size in IE8, IE7 or FireFox.
There are layout problems - the worst is caused by misuse of absolute
positioning. Don't use Absolute Positioning until you understand it; and if
you understood it, you would not use it.
Try changing:

<div style="position: absolute; width: 279px; height: 26px; z-index: 1;
left: 347px; top: 178px" id="layer1">
<p align="center"><b><font color="#FFFFFF" size="4">426&nbsp; Perry Hill
Road</font></b></div>
<p><img border="0" src="IMG_5247.JPG" width="493" height="294"></td>

to

<p align="center"><b><font color="#FFFFFF" size="4">426&nbsp; Perry Hill
Road</font></b><br>
<img border="0" src="IMG_5247.JPG" width="493" height="294"></p></td>

--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.
 
Back
Top