Text box and it's contents shifted when preview in IE

A

Andreww

Hi - I am using FP2003 and am somewhat of a newbie!

I have set up a template which all seems fine. When I preview the page
from within FP the page looks fine, however, when I preview in my
browser (IE7) the logo's which are in two text boxes in cells at the
top of the page are shifted a couple of cm's to the right!!!

Any ideas??

Additionally, how can I set a default font for FP. I want it all to be
in Arial, I set text that I type in to be in Arial but when previewing
it has changed to Times Roman.

Any ideas?

Many thanks

Andrew
 
K

Kevin Spencer

Browsers display different HTML elements in different ways. We do not know
anything about your Template, so we don't know what HTML elements it is
using. If you have a URL of the page, or can copy the page HTML into a
message, we can help.

As for your default font, you can do this for each page by adding a CSS
style to the body tag:

<body style="font-family: Arial, Helvetica, sans-serif; font-size: medium">

Or, for the entire web, you can use an external CSS style sheet with the
same style defined for the body, and reference that style sheet in every
page:

<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
font-size: medium;
}
</style>

--
HTH,

Kevin Spencer
Microsoft MVP
Bit Player
http://unclechutney.blogspot.com

Where there's a Will, there's a William.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top