Divi主题主标题菜单中心对齐

时间:2018-12-22 17:11:52

标签: css wordpress

enter image description here我正在将divi主题用于wordpress网站。默认情况下,顶部主菜单右对齐。如何自定义它以使其居中对齐?

代码:

@media only屏幕和(最小宽度:981px){

/* Vertically center the top navigation */
#et-top-navigation { vertical-align: middle; float:none !important;}
.container { display:table; }

/* Center align the contents of the top navigation area */
#et-top-navigation { text-align:center; }
#et-top-navigation > * { text-align:left; }

#top-menu-nav, #et_top_search { float:none !important; display:inline-block !important}
#et_top_search { vertical-align: top !important; margin-top:3px }

}

1 个答案:

答案 0 :(得分:0)

将来,我建议更好地提出这个问题,因为该问题提供的信息太少,无法帮助解决问题。幸运的是,我现在身体健康。这是您的解决方案。

在样式表中:

#et-top-navigation {
    float: none; 
    text-align: center; 
}

nav.fullwidth-menu-nav {
   float: none;
}