Why do page tops (banners?) jump?

  • Thread starter Thread starter brooksr
  • Start date Start date
B

brooksr

As I click nav buttons to move through my pages, the index page
displays one line lower than all the other pages. This makes the
screen 'jump' when the user returns to the home/index page and looks
unprofessional.

I compared the headings of the pages and the only difference is that
the index page contains:

<meta http-equiv="Content-Language" content="en-us">

so I tried commented it out:

<! meta http-equiv="Content-Language" content="en-us">

and the problem is fixed. But why did it occur? Why does the meta
language statement make the heading display differently? Should I
remove this line from the index page or add it to all the other pages?

Brooks
 
That is not a valid comment tag
<! meta http-equiv="Content-Language" content="en-us">
This is
<!-- meta http-equiv="Content-Language" content="en-us"> -->

PS
that shouldn't cause your problem
- check you body tag for page margin settings
--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| As I click nav buttons to move through my pages, the index page
| displays one line lower than all the other pages. This makes the
| screen 'jump' when the user returns to the home/index page and looks
| unprofessional.
|
| I compared the headings of the pages and the only difference is that
| the index page contains:
|
| <meta http-equiv="Content-Language" content="en-us">
|
| so I tried commented it out:
|
| <! meta http-equiv="Content-Language" content="en-us">
|
| and the problem is fixed. But why did it occur? Why does the meta
| language statement make the heading display differently? Should I
| remove this line from the index page or add it to all the other pages?
|
| Brooks
|
 
Back
Top