如何删除小部件之间的线并将其他小部件居中?

How to remove line between widgets and center other widget?

我有一个问题无法解决。我想删除 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;
}

图像中显示了我要删除的行。

为此添加一些 css:

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