Html 获得3列响应

Html 获得3列响应,html,css,Html,Css,我在Wordpress中使用了一个主题,它有一些内置的响应性专栏类。我正试图得到一个3列布局正常工作。问题出现在初始显示上。我希望网站有如下布局: NAV | BIO AND PIC | SIDEBAR 我得到的是: BIO AND PIC | SIDEBAR | NAV HTML代码 您可以在以下位置查看该站点: 相关CSS: .fusion-column.fusion-two-third { width: 65.3333%; } dev.icsandbox.com/m

我在Wordpress中使用了一个主题,它有一些内置的响应性专栏类。我正试图得到一个3列布局正常工作。问题出现在初始显示上。我希望网站有如下布局:

NAV | BIO AND PIC | SIDEBAR
我得到的是:

BIO AND PIC | SIDEBAR | NAV       
HTML代码

您可以在以下位置查看该站点:

相关CSS:

.fusion-column.fusion-two-third {
  width: 65.3333%;
}
dev.icsandbox.com/media="all"
.fusion-column.fusion-one-sixth, .fusion-column.fusion-five-sixth, .fusion-column.fusion-one-fifth, .fusion-column.fusion-two-fifth, .fusion-column.fusion-three-fifth, .fusion-column.fusion-four-fifth, .fusion-column.fusion-one-fourth, .fusion-column.fusion-three-fourth, .fusion-column.fusion-one-third, .fusion-column.fusion-two-third, .fusion-column.fusion-one-half {
  position: relative;
  float: left;
  margin-right: 4%;
  margin-bottom: 20px;
}
body {
  background-color: #f0f0f0;
  color: #404040;
  margin: 0px;
  font-family: 'HelveticaNeue';
  font-weight: light;
  font-size: 15px;
  line-height: 21px;
  letter-space: .4px;
}
body, .post .post-content, .post-content blockquote, #wrapper .fusion-tabs-widget .tab-holder .news-list li .post-holder .meta, .sidebar .jtwt, #wrapper .meta, .review blockquote div, .search input, .project-content .project-info h4, .title-row, .simple-products-slider .price .amount, .quantity .qty, .quantity .minus, .quantity .plus, .timeline-layout h3.timeline-title, .blog-timeline-layout h3.timeline-title, #reviews #comments > h2, .sidebar .widget_nav_menu li, .sidebar .widget_categories li, .sidebar .widget_product_categories li, .sidebar .widget_meta li, .sidebar .widget .recentcomments, .sidebar .widget_recent_entries li, .sidebar .widget_archive li, .sidebar .widget_pages li, .sidebar .widget_links li, .sidebar .widget_layered_nav li, .sidebar .widget_product_categories li {
  color: #404040;
}
body, .sidebar .slide-excerpt h2, .footer-area .slide-excerpt h2, #slidingbar-area .slide-excerpt h2, .post-content blockquote, .review blockquote q {
  line-height: 21px;
}
body, .sidebar .slide-excerpt h2, .footer-area .slide-excerpt h2, #slidingbar-area .slide-excerpt h2, .jtwt .jtwt_tweet, .sidebar .jtwt .jtwt_tweet {
  font-size: 15px;
  line-height: 23px;
}

#wrapper .fusion-column.last {
  margin-right: 0;
}

.fusion-column.fusion-one-third {
  width: 30.6666%;
}
.fusion-column.fusion-one-sixth, .fusion-column.fusion-five-sixth, .fusion-column.fusion-one-fifth, .fusion-column.fusion-two-fifth, .fusion-column.fusion-three-fifth, .fusion-column.fusion-four-fifth, .fusion-column.fusion-one-fourth, .fusion-column.fusion-three-fourth, .fusion-column.fusion-one-third, .fusion-column.fusion-two-third, .fusion-column.fusion-one-half {
  position: relative;
  float: left;
  margin-right: 4%;
  margin-bottom: 20px;
}

#main .sidebar {
  width: 23%;
}
#main .sidebar {
  background-color: #989898;
}
.sidebar {
  width: 23.4042553%;
  float: right;
}

从我在你的网站上看到的情况来看,你必须首先在它们之间切换内容元素:

.fusion-two-third with .fusion-one-third
然后更改的类名

.fusion-two-third .two_third to .fusion-one-third .one_third
因为三分之一和三分之二占据了整个宽度。然后,如果您检查DOM,您将看到您有:

<div class="fusion-clearfix'></div>

请在问题中仅包含重现问题所需的代码。否则,当问题得到纠正时,该问题在将来将不再有用。我通过编辑问题添加了CSS。从我在您的网站上看到的内容来看,您必须首先在它们之间切换内容元素(
fusion two third
fusion one third
),然后将
fusion-two-third-two-third
的类名更改为
fusion-two-third-two-third
,因为1/3和2/3占据了整个宽度。然后,如果你检查你的
DOM
,你会发现你有一个
Razvan,它几乎就在那里。我仍在获取:内容导航我正在尝试找出如何使导航出现在第一个内容列的左侧。您可以查看问题中的链接以查看更改是否有效。现在在右边有一些空间,所以导航应该是菲蒂修好的。两个内容列周围需要有一个内容包装器。有一次我补充说,一切都很完美。谢谢Razvan如果你把你的答案作为一个真实的答案,我可以把它标记为正确的。谢谢