如何在移动视图中删除填充和放大图像

时间:2013-08-20 18:42:43

标签: css mobile responsive-design

my blog上,我正在尝试减少蓝框内的填充并放大我的图片并移除悬停以查看我的移动视图。到目前为止,我的代码不会改变它。我只是想让它对触摸设备更具响应性

@media only screen and (max-width:800px) {
    #header, #pageWrapper, #footer {
        padding: 30px 20px;
        margin-bottom: 0px !important;
    }  
    h1.logo {
        text-align: center;
        padding-bottom: 10px
    }
    .slide img {
        opacity: 1
    }
    .sqs-active-slide img {
        opacity:1
    }
    .collection-type-gallery #slideshowWrapper .slide img {
        background-color: white !important;
        margin: 2px 0;
    }
    img {
        max-width: 200px;
    }
    .hentry {
        background: #F8F9FC;
        padding: 10px;
        border-style: solid;
        border-color: #E2E7F5;
        border-width: 2px
    }
    .collection-51ca14b1e4b014f2c6e0c3e7 .slide img {
        opacity:1.0;
    }
}

2 个答案:

答案 0 :(得分:1)

对于图像,您需要使用!important声明来覆盖HTML中的正常特殊样式。 例如,如果要将新宽度设置为400px:

.sqs-gallery-block-grid .slide .margin-wrapper a.image-slide-anchor img {
    width: 400px !important;
    height: auto !important;
}

答案 1 :(得分:0)

我可以立刻告诉你,你的最大宽度可能太高了。如果您要定位智能手机,则最多应为640px。