我想让我的图库http://wordpress.org/extend/plugins/photospace-responsive/响应,当浏览器缩小为移动时,垂直布局会变为水平布局。
请告诉我当屏幕尺寸小于画廊顶部时,我如何才能恢复它?
查看我的测试页面 http://brightmist.co.uk/gallery/
我甚至尝试过媒体查询
.photospace_res .gal_content {
float: left;
width: 80%;
}
.photospace_res .thumbs_wrap2 {
float: left;
min-height: 800px;
width: 20%;
}
@media all and (max-device-width: 480px) {
.photospace_res .gal_content {
float: none;
width: 100%;
}
.photospace_res .thumbs_wrap2 {
float: none;
min-height: 0;
width: 100%;
}
}
感谢您的帮助 朱迪
答案 0 :(得分:0)
我可以修理它并添加一些额外的样式
.photospace_res .gal_content {
float: left;
width: 80%;
}
.photospace_res .thumbs_wrap2 {
float: left;
width: 20%;
}
.photospace_res {
margin: 0;
}
.photospace_res .ss-controls {
border: 1px solid #CCCCCC;
margin-bottom: 20px;
padding: 5px 10px;
}
@media screen and (max-width: 700px) {
.photospace_res .gal_content {
float: none;
width: 100%;
}
.photospace_res .thumbs_wrap2 {
float: none;
min-height: 0;
width: 100%;
}
}