英文:
how to give color to a wordpress tab using tabby responsive tabs plugin
问题
I am using tabby responsive tabs plugin to make this tabs but I want when the page load the first tab get orange color and when I click on another tab the color change with my code now it just gives color when I click on it
.responsive-tabs__heading,
.responsive-tabs__list__item {
font-weight: bold!important;
color: black!important;
background-color: #E8E8E8!important;
}
.responsive-tabs__heading:focus,
.responsive-tabs__list__item:focus {
background-color: #ff6720!important;
}
英文:
I am using tabby responsive tabs plugin to make this tabs but I want when the page load the first tab get orange color and when I click on another tab the color change with my code now it just gives color when I click on it
.responsive-tabs__heading,
.responsive-tabs__list__item {
font-weight: bold!important;
color: black!important;
background-color: #E8E8E8!important;
}
.responsive-tabs__heading:focus,
.responsive-tabs__list__item:focus {
background-color: #ff6720!important;
}
答案1
得分: 0
根据您的实例,我注意到他们将活动选项卡添加了一个活动类:
.responsive-tabs__list__item--active
.responsive-tabs__list__item.responsive-tabs__list__item--active {
background-color: red!important;
}
如果这对您有效,请告诉我。
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论