我正在创建自己的网站,并且尝试搜索CSS动画,该动画会使导航栏中的文本显示在徽标的左侧,然后移至右侧。
我只想在其中保留导航菜单文本,而没有任何动画。使用DIVI主题。
http://nerdypreneur.com/
如果可以帮助您,非常感谢!
最佳答案
如Radiaktive所述,它不是动画。以下是我认为可以用来解决此问题的CSS。
// Put this in your css or update it.
.et_header_style_left .logo_container {
/* position: absolute; */ // Remove this from your css
/* width: 100%; */ // Remove this from your css
/* height: 100%; */ // Remove this from your css
float: left;
padding-top: 20px;
}
.et_header_style_left .logo_container a {
max-width: 120px;
display: inline-block;
}
.et_fixed_nav #et-top-navigation {
padding-left: 40px !important;
}
希望这可以帮助。!
关于css - 是什么导致了此导航动画,如何停止它? (Divi主题),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49815775/