Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Sunbirst Github 页面指出:
在宽度小于 640 像素的设备上查看时,portlet 整齐地隐藏在主要内容区域下方。这意味着该站点可以很好地与支持 CSS 的设备(例如分辨率可能有限的平板电脑和手机)配合使用。
如何禁用此功能?也就是说,无论显示大小如何,我都希望 portlet 总是在左侧或右侧移位。
mobile.css样式表定义了移动设备上的布局。您可以在自己的皮肤层中清除该文件。
mobile.css
通过 CSS 设置固定宽度,#visual-portal-wrapper 非常适合:
#visual-portal-wrapper { width: 999px; /* or any other absolute value */ margin: 0 auto; /* horizontal centering */ }