admin管理员组文章数量:1294178
I want the menu of this site to look like the menu of this site.
It's clear that they use display table and table cell but not sure how to implement it, been playing with css for a while, couldn't nail it. Didn't found a plugin that does the job but css should do. Do I have to create a custom menu layout? I think not.
I'm using a wordpress menu with this plugin, and the header.php
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'menu-header', 'fallback_cb' => false, 'container' => false ) ); ?>
<a href="<?php echo esc_url( CP_ADD_NEW_URL ); ?>" class="obtn btn_orange"><?php _e( 'Post an Ad', APP_TD ); ?></a>
<div class="clr"></div>
I want the menu of this site to look like the menu of this site.
It's clear that they use display table and table cell but not sure how to implement it, been playing with css for a while, couldn't nail it. Didn't found a plugin that does the job but css should do. Do I have to create a custom menu layout? I think not.
I'm using a wordpress menu with this plugin, and the header.php
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'menu-header', 'fallback_cb' => false, 'container' => false ) ); ?>
<a href="<?php echo esc_url( CP_ADD_NEW_URL ); ?>" class="obtn btn_orange"><?php _e( 'Post an Ad', APP_TD ); ?></a>
<div class="clr"></div>
Share
Improve this question
edited May 26, 2017 at 21:01
Lynob
asked May 26, 2017 at 20:36
LynobLynob
1011 gold badge1 silver badge13 bronze badges
1 Answer
Reset to default 2Editing my answer. See the screenshot, if it's close enough to what you're looking for, try adding the following to your stylesheet.
.header_menu_res ul li {
margin: 0 0 20px;
width: 25%;
}
.menu-item i._mi, .menu-item img._mi {
display: block;
float: left;
}
.menu-item span {
margin-top: 8px;
display: block;
margin-left: 60px;
}
本文标签: cssdisplay menu as table layout
版权声明:本文标题:css - display menu as table layout 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741594485a2387329.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论