是的,可以更改部分和面板标题/链接的颜色和其他CSS属性。您只需了解CSS选择器。这是剖面和面板的选择器模式。
#accordion-section-SECTION_ID_GOES_HERE .accordion-section-title {
/* add CSS properties here */
}
#accordion-panel-PANEL_ID_GOES_HERE .accordion-section-title {
/* add CSS properties here */
}
你有一个面板
example_panel
和一节
example_section
然后选择器将如下所示-
#accordion-section-example_section .accordion-section-title {
background-color: tomato;
border-left-color: tomato;
color: #fff;
}
#accordion-panel-example_panel .accordion-section-title {
background-color: purple;
border-left-color: purple;
color: #fff;
}
现在,如果您将自定义CSS保存在样式表中
customize-control.css
然后你必须使用
customize_controls_enqueue_scripts
.