Remove scrolling from bottom of site!

Hey guys,

Can any of you tell me why this site is scrolling at the bottom? I know it’s a css issue but can’t seem to figure it out.

http://www.zeco.org/

Thanks

The UL in your header is 1000px wide, but it has been pushed way over to the right by padding on the container:

.headerLogin ul {
  [COLOR="#FF0000"]width: 1000px;[/COLOR]
  margin: 0px auto;
  display: block;
}

Remove that width and scroll bar will disappear, but you’ll have some tidying up to do of the header. :slight_smile:

Hey Ralph!

Thanks so much. I just couldn’t see it. Much appreciated. :slight_smile:

No problem. Glad to help. A second pair of eyes is always useful. :slight_smile: