spacing and alignment

  • Thread starter Thread starter Paul De Lagrave
  • Start date Start date
P

Paul De Lagrave

I am building my first web page. I am using FP 2003, on some of the pages
that I have with text and pictures to get them where I want I have used the
tab key to get the spacing I want. When I go into the code section I have
multiple instances of "; " Is there an alignment command I should be
using instaed of tab or is this normal. For an example please go to
http://www.alexanderspizza.com and check out the staff page or just any page
I guess and look at the source in the view menu, and let me know if this
looks ok or if I should be doing it differently
thank you
 
You either need to use tables or absolute positioning to structure your page
layout. There is no support for tabs in HTML.

Note: Absolute positioning is not well supported on all browsers, best to
use tables.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
The problem is here:
<p align="center" style="position: absolute; top: 377px; left: -1px; width:
935px; height: 74px; z-index: 1; visibility: visible"
dynamicanimation="fpAnimwipeLRFP1" id="fpAnimwipeLRFP1"
language="Javascript1.2">
<font size="6" color="#008000">&nbsp; <b><i>Voted Coronado's Best
Pizza by
Coronado Lifestyle Magazine<br> and One of San Diego's Best Pizzerias
by Bestof.com</i></b></font></p>

In that you have specified a width of 935px ( pixels )
inside of a table set at 100% width.
Try reducing the size to 650px
( or set it to 100% if possible )

If it will let you set it at 100% it will always match the table size.

obtw, does the restaurant have an open courtyard inside??
I'm asking because I think I've been there.

hth
 
Back
Top