如何更改响应式主题中小部件的宽度?

How can I change the width of a widget in Responsive theme?

响应式主题中的默认页脚小部件是总屏幕宽度的 1/3。我怎样才能把它扩大到 100%?

您可以在 http://domain.com/wp-content/themes/yourtheme 目录中找到 footer.php 文件。

在其中您可以找到以

开头的类似行
<!--start footer-->
<footer id="footer">

在那里你会找到 <div class="something"> 标签。 如果您知道自己在做什么,请更改 div 的 class。

始终保留备份:)

在主题选项中的 CSS 样式中添加以下内容为我解决了这个问题:

#home_widget_1.col-300 {
  width: 100%;
  margin: 0;
}