Board index » Web Programming » Why do page tops (banners?) jump?

Why do page tops (banners?) jump?

Web Programming423
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


-
 

Re:Why do page tops (banners?) jump?

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!" (-;

_____________________________________________





"brooksr" <brooks@rimesrv.net>wrote in message news:1171212512.884412.322540@v33g2000cwv.googlegroups.com...

| 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

|





-