这个网站的CSS白框怎么加宽?

How do I widen the white box with CSS on this website?

网站是http://bio.shinobiarts.net/BIO/ 我通过反复试验发现函数

div.entry-content { width: 1000px; }

会让白框变小,但我不能再变大了。

我是 CSS 的新手,所以任何 advice/tips 都非常感谢。谢谢!

div 设置了 max-width。使用此 CSS 规则删除它:

.page > .entry-content,
.page > .entry-header
{
    max-width: 100%;
}

编辑:添加.page,因为规则没有生效
EDIT2:添加了 .entry-header

的规则