css 徽标/导航重叠的GeneratePress标题修复

Posted

tags:

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

/*  GeneratePress Header fix for problem break points
    Change the 900px 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标题修复的主要内容,如果未能解决你的问题,请参考以下文章