开发者

Random Horizontal Scrollbar on Website

开发者 https://www.devze.com 2023-04-08 09:11 出处:网络
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, a开发者_如何学Pythonnd I\'m really not sure how to get rid of i

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, a开发者_如何学Pythonnd I'm really not sure how to get rid of it.

Help is appreciated.

http://www.hearthstoneresort.com/


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.
}


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.


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

body {
    overflow-x: hidden;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号