WP Bakery 手风琴活动文本颜色

问题描述 投票:0回答:1

我正在尝试生成 css 来更改 WP Bakery 手风琴中活动内容标题的文本颜色。我使用以下内容作为背景并且它有效,但现在我需要文本为白色

.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-title { 
  background-color:  #8B68AC ! important;
}

我试过这个:

.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-title { 
  background-color:  #8B68AC ! important; 
}

背景有效,但我需要文本颜色为白色

html css wpbakery
1个回答
0
投票

您可以在代码中将

color
属性设置为
white
。在这种情况下,它将确保您的文本颜色为
white
这是因为
color
属性将应用于该类下的所有文本。

.vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-title { 
  background-color: #8B68AC !important; 
  color: white !important;
}
© www.soinside.com 2019 - 2024. All rights reserved.