Wordpress标题图像移动CSS问题

时间:2014-09-29 15:25:24

标签: css wordpress image mobile

在以下网站上工作,无法在移动设备中正确调整标题大小:http://tinyurl.com/mrveubj

当它在移动屏幕上调整大小时,它会向右移动,并且不会像在全尺寸屏幕上那样保持在导航上方居中。代码如下:

#branding .header_logo .tb-image-logo img {
display:block;
margin-bottom:-15px;
margin-left:-15px;
margin-top:-30px;
max-width:990px;!important}

任何想法都会非常感激。

1 个答案:

答案 0 :(得分:1)

只需添加属性宽度:100%到#branding .header_logo .tb-image-logo img

#branding .header_logo .tb-image-logo img {
    display: block;
    margin-bottom: -15px;
    margin: 0 auto;
    max-width: 990px;
    width: 100%;
}