Instant download after payment Secure checkout Contact support

WordPress How to Tutorials

Add Icons to WordPress Customizer Setting Panel

23 July 2026

Recently WordPress makes customizer necessary for all theme submitted WP directory if you are working with it then you must want to know how to place Icons in Customizer Options there are some other issue as well apart from just placing icons like mane of sanitization fields and making other change. But today we just talk about how you can style your customizer using CSS and place Icons in customizer . For Icons you don’t need any external font icons because WordPress itself have some included Icons with package. You can check all dashicons here they are beautiful and under GPL licences or check on Github. Icons in wordpress customizer

Place Icon in Customizer Options

First step to create a CSS file name it whatever you prefer like customizer.css and now you just need to CSS Class and ID of every field option or section where you wish to place Icons may be in top panel or under section user developer tool to view panel CSS Class or ID as shown in below picture. Incpect CSS class Here is you can see ID #accordion-panel-level_panel_geranal  now you have ID of panel so you can use it in css but one more thing you should consider while using Icons if you used this ID only then icons will place into sub section and panel automatically under this panel. You need to point icon only to general settings class n above Picture second arrow point to it. So now you complete CSS looks like this #accordion-panel-panel_general > h3.accordion-section-title

CSS Styling

Lets start styling I use before and li to complete my css before for icons place.
li#accordion-panel-level_panel_geranal > h3.accordion-section-title:before {
content: "\f107";
font-family: dashicons;
padding: 3px;
}

PHP Codes

Now save this file within your theme directory you also need a special code in function.php to call this file.

14 comments

  • domain 24 March 2016
    Good article. I'm experiencing a few of these issues as well..
  • Vijay Kumar 28 August 2016
    Thanks for giving the detailed information about CSS styling. The article could be very useful for everyone.
  • Jagdish kashyap 11 November 2016
    Oh Man, you saved my lot's of time. I have been searching this from while. Thanks!
  • Vijay 23 November 2016
    Hmm, That is the thing.... I was looking for what it is?? This is detailed guides about CSS. Now I have added icons on my site using your fully guide. Thanks
  • rasigunyogi 20 December 2016
    Thanks for giving the detailed information about CSS styling. The article could be very useful for everyone. I have added icons on my site using your fully guide. Thanks
  • Sai Sannihith Cheerla 25 December 2016
    Good article and neatly explained. Thumbs up!
  • Deepak Jha 4 January 2017
    Thanks a lot mate.. I will try it on my website and see if it works for me or not.
  • filmywap 31 January 2017
    Nice Post i realy need it
  • Rovshen 24 February 2017
    thank you! Very helpfull
  • SD Maid Pro 4 March 2017
    Nice article for neat CSS Styling :)
  • Pranshu Kharkwal 24 March 2017
    Worked like charm. Thanks a lot for post it. You are literally a life saver.
  • Mohit Kumar 25 April 2017
    nice article . Really informative.Got idea about how to add icons in wp cutomizer setting panel.
  • Pickup Lines 14 August 2017
    Cool Man, Working Perfectly
  • Anushka Vashishta 23 November 2017
    Thanks Sandy. It saved my lot of time. Really appreciate your efforts for putting this information altogether.