Reputation: 11
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
Reputation: 26969
Just remove overflow-x:hidden
from the mainContent
and then change display:block
into display:inline-block
Upvotes: 1
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