Matching width of pages and shared borders

  • Thread starter Thread starter tricklering
  • Start date Start date
T

tricklering

I have a website with only a few pages (www.tricklering.com) and they all
share top and bottom borders. When i publish the site then view it, the
"shared borders" are centered fine and fit on computer screens but the
"pages" are all just a bit too wide to fit, requiring a user to use the left
and right arrows to view what is out of sight. How do i get the pages to
match the width of the shared borders? I don't recall ever setting any
widths when i started setting up the pages and i don't see an obvious way to
check or alter the widths now- Thanks!
 
The table for your Google search box has the width set at: width="1170"

Change width="1170" to width="100%"

That said there are several errors in the construction of the page.
No closing head tag.
Two extra head tags a line 104
Multiple closing input tags </input> that are not needed.
Multiple closing head tags.

The page needs to be constructed as follows
<html>
<head>
<title></title>
stuff for the head section here
</head>
<body>

"All" page content here...

</body>
</html>

--

Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm
 
Thank you! There were a bunch of width specifications that were other than
100% so after changing each of them on all 5 pages, the site views as it
should- I never would have thought to look there.... if my AVI movie would
only play when the site opens now..
 
Back
Top