第十二个主题:删除页边距

时间:2013-02-11 作者:Sergey Vyacheslavovich Brunov

也许这个问题太简单了,但我已经试着自己找出信息。

我怎么能remove margins (全部:左、上、右、下)作为“2012”主题?

这就是我的意思:WordPress screenshot

1 个回复
最合适的回答,由SO网友:birgire 整理而成

我想你指的是这些时髦的阶级定义。css:

    /* =Media queries
    -------------------------------------------------------------- */

    /* Minimum width of 600 pixels. */
    @media screen and (min-width: 600px) {

    ...cut...

        .site {
            margin: 0 auto;
            max-width: 960px;
            max-width: 68.571428571rem;
            overflow: hidden;
        }

    ...cut...

    }


  /* Minimum width of 960 pixels. */
  @media screen and (min-width: 960px) {

    ...cut...

    body .site {
        padding: 0 40px;
        padding: 0 2.857142857rem;
        margin-top: 48px;
        margin-top: 3.428571429rem;
        margin-bottom: 48px;
        margin-bottom: 3.428571429rem;
        box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    }

    ...cut...

}
Edit:这是一种风格。子主题的css:

/*
Theme Name:     Twenty Twelve Child
Theme URI:      http: //example.com/
Description:    Child theme for the Twenty Twelve theme
Author:         birgire
Template:       twentytwelve
Version:        1.0
*/

@import url("../twentytwelve/style.css");

/*-----------------
Custom page layout
-------------------*/

/* remove site margin */
body .site{margin:0;max-width: 100%;}

结束