响应边栏wordpress主题

时间:2014-01-18 00:41:44

标签: html5 wordpress css3 sidebar fluid-layout

我有以下内容,我想知道是否有人可以帮助解释我应该如何使我的侧边栏在我的标记中崩溃并放在wordpress博客主题中的主要内容之下。我有一种感觉,我可能需要一个特定的媒体@查询但不确定是什么。

这是我试图从头开始建立的wordpress博客主题。有一个带有导航和图像的标题,我没有任何问题,但是,我需要一个主内容容器,内容div为左边的文章和侧边栏div浮动右边的小部件。如果有人可以帮我开始这个过程中,我会永远感激。

CSS代码:

.gridContainer {
margin-left: auto;
margin-right: auto;
width: 87.36%;
padding-left: 1.82%;
padding-right: 1.82%;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}

#LayoutDiv2 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}

body, html {
height: 100%;
}

#content{
display:inline-block;
float:left;
width:80%;
}

#sidebar{
display:inline-block;
float:left;
width:20%;


}



/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
width: 90.675%;
padding-left: 1.1625%;
padding-right: 1.1625%;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#LayoutDiv2 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}



/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and     Tablet Layout. */

@media only screen and (min-width: 769px) {

.gridContainer {
width: 88.2%;
max-width: 1232px;
padding-left: 0.9%;
padding-right: 0.9%;
margin: auto;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
#LayoutDiv2 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}

HTML CODE

<body>
<!--HEADER, CONTENT, FOOTER-->
<div class="gridContainer clearfix">
<!--HEADER--> 
<div id="LayoutDiv1">
        <!--NAVIGAIION + LOGO-->
        <nav>
            <div class="header">

                    <div id="logo"></div>   

                    <!--navigation list items-->
                    <ul>
                        <li><a href="">home</a></li>
                        <li><a href="">about</a></li>
                        <li><a href="">contact</a></li>
                        <li><a href="">work</a></li>

                    </ul>


            </div>
        </nav>
        <!--end of NAVIGATION + LOGO-->


  <div id="LayoutDiv2" class="clearfix">

        <div id="content">

            <p> This is the Content</p>     

        </div>


        <aside>

            <div id="sidebar">

                <p> This is the Sidebar</p>

            </div>

        </aside>





  </div><!--end of LayoutDiv2-->





</div><!--end of LayoutDiv1-->




</div><!--end of Grid Container, HEADER, CONTENT, FOOTER-->


</body>

1 个答案:

答案 0 :(得分:0)

您需要为您的内容和侧栏撰写media query,例如:

@media (max-width: 600px) {
    #sidebar{ clear: both; width: 100%; }
    #content{ clear: both; width: 100%; }
}

这允许您将div放在彼此之下,并使它们成为页面的整个宽度。

有关工作示例,请参阅此JSFiddle