A new client has come to me with a strange issue they've got on their website, for some reason it's displaying a horizontal scrollbar, and I'm really not sure how to get rid of it.

Help is appreciated.

http://www.hearthstoneresort.com/

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

You need to remove this width setting under div#tagline p from Hearthstone.css

div#tagline p
{
width: 828px; // remove this because it's positioned absolutely.
}
link|improve this answer
feedback

How about setting the body width to 100% instead of 828px in the css file. Or a hack like :

overflow:hidden;

in css always work.

link|improve this answer
feedback

add in stylesheet under body tag 'overflow-x: hidden;'

body {
    overflow-x: hidden;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.