如何增加这个博客的宽度? (主体和小部件的宽度)

How to increase the width of this blog? (Width of the main body and widget)

这是link博客https://www.glamiva.com/2021/09/its-been-while.html

问题:

  1. 我希望页面大小占据屏幕的 100%,而不是现在。你能展示我需要编辑的代码部分吗?

为了便于理解,我附上了下图:

有:

@media (min-width: 1200px){
  .container {
    width: 1170px;
  }
}

设置相同但用 width: auto; 或 100% 覆盖基本规则

你用的是什么技术?

您可以将网站的容器大小更改为 100%。 reference 例如:

.container{
    width: 100%;
 }