英文:
Navbar menu button text styling in WordPress
问题
我想在向下滚动时保持“获取报价”按钮上的文本为白色。目前,它会与其他导航栏字体一起变成灰色。我需要使用自定义CSS来隔离这个按钮的文本,以便它始终为白色,但不影响导航栏菜单文本。
这是我目前用于菜单字体颜色的代码:
.menu-transparent .navbar .nav>li>a {
color: #fff;
}
英文:
I want to keep the text in the Get Quote Button white on downward scrolling. Currently, it changes to grey along with the other navbar font. I need to isolate this button text using custom CSS so it is white at all times, but does not affect navbar menu text.
<website removed>
This is the code I am currently using for the menu font color.
.menu-transparent .navbar .nav>li>a {
color: #fff;}
答案1
得分: 0
添加这个样式。
.menu-transparent .navbar-fixed-top.navbar.top-nav-collapse .nav > li.getquote > a { color: #fff !important;}
英文:
Add this style.
.menu-transparent .navbar-fixed-top.navbar.top-nav-collapse .nav > li.getquote > a { color: #fff !important;}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论