css 当导航在徽标旁边浮动时,GeneratePress标题修复徽标/导航重叠

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 当导航在徽标旁边浮动时,GeneratePress标题修复徽标/导航重叠相关的知识,希望对你有一定的参考价值。

/*GeneratePress Header fix for problem break points
Change the 900 px value in two places to where you have nav/logo overlap*/
@media(min-width:768px) AND (max-width:900px) {
  .inside-header {
    display:flex;
    flex-flow: row wrap;
    justify-content:center;
    }
    
    #site-navigation {
      min-width:900px;
      padding:10px;
      text-align:center;
    }
    #site-navigation ul li {
      display:inline-block;
      float:none;
    }
    }

以上是关于css 当导航在徽标旁边浮动时,GeneratePress标题修复徽标/导航重叠的主要内容,如果未能解决你的问题,请参考以下文章