定制器中的自定义面板/部分链接样式

时间:2018-02-27 作者:Ray

是否可以在WordPress自定义程序中更改面板/节链接的颜色?像这样(示例图像来自默认安装,但我说的是将其添加到自定义部分):

enter image description here

1 个回复
最合适的回答,由SO网友:obiPlabon 整理而成

是的,可以更改部分和面板标题/链接的颜色和其他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.

结束

相关推荐