Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css hubspot和引导主题的问题_Css_Html_Twitter Bootstrap_Themes_Hubspot - Fatal编程技术网

Css hubspot和引导主题的问题

Css hubspot和引导主题的问题,css,html,twitter-bootstrap,themes,hubspot,Css,Html,Twitter Bootstrap,Themes,Hubspot,我们在bootstrap中创建了一个新主题,并在HUBSPOT上的博客中应用了一个新主题。有一个问题,当我们调整窗口的大小,以响应尺寸主题卡住,滚动条消失约600px 我不能移动页面上下,需要帮助解决这个问题,为什么主题卡在中间,滚动条消失。< /P> 主题链接:在HomeArena-style.min.css中,您可以看到以下代码: @media (max-width: 899px) #site-wrapper{ overflow-y: hidden; } 应该是 @media (max-

我们在bootstrap中创建了一个新主题,并在HUBSPOT上的博客中应用了一个新主题。有一个问题,当我们调整窗口的大小,以响应尺寸主题卡住,滚动条消失约600px

我不能移动页面上下,需要帮助解决这个问题,为什么主题卡在中间,滚动条消失。< /P>


主题链接:

在HomeArena-style.min.css中,您可以看到以下代码:

@media (max-width: 899px)
#site-wrapper{
 overflow-y: hidden;
}
应该是

@media (max-width: 899px)
#site-wrapper{
 overflow-y: scroll !important;
}
使用高度作为自动

#site-wrapper{ height:auto}
如果不起作用,请告诉我