Michael Nolting
Michael Nolting

Reputation: 11

Scrollbar appearing inside my website

I have a problem with my website. http://flightsdubai.org/America/Dubai-to-America.php5

There is a mystical scrollbar that appears inside my content window.

http://flightsdubai.org/Asia/Dubai-to-Asia.php5 is based on the same template, yet there is no mysterious scrollbar there.

Has anyone had this problem before? Any help will be appreciated.

Upvotes: 1

Views: 82

Answers (2)

Sowmya
Sowmya

Reputation: 26969

Just remove overflow-x:hidden from the mainContent and then change display:block into display:inline-block

Upvotes: 1

Shailender Arora
Shailender Arora

Reputation: 7778

just remove the overflow-x: hidden; and give the overflow: hidden; to your this class .maincontent

i hope this will work........

UPDATED CSS

.mainContent {
    overflow: hidden;
}

Upvotes: 0

Related Questions