如何删除小部件和中心其他小部件之间的界限?

时间:2017-02-06 13:25:50

标签: css wordpress widget line

我有一个问题无法解决。我想删除my site中其他两个小部件之间的行,并集中其他2个联系人小部件。怎么做到这个?我要删除的小部件中的CSS是:

.footer-branding {
   display: -webkit-flex;
   display: -ms-flexbox;
   display: flex;
   -webkit-justify-content: center;
   justify-content: center;
  -webkit-align-items: center;
  align-items: center;      
  width: 30%;
  float: left;
  text-align: center;
  padding: 30px 30px 15px 15px;
}

图片显示我要删除的行。

enter image description here

1 个答案:

答案 0 :(得分:1)

只需添加一些css:

.footer-branding {
    width:0;
    padding:0;
}
.footer-contact {
    broder-left:0; 
    margin:0 auto;
}