Title: Changing Default bullet style
Last modified: August 21, 2016

---

# Changing Default bullet style

 *  Resolved [dchandra](https://wordpress.org/support/users/dchandra/)
 * (@dchandra)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/changing-default-bullet-style/)
 * Can anybody tell me, how can I change the default bullet icon with a colored 
   arrow as shown in the attached [image](https://www.dropbox.com/s/s00hbua9imngx99/bullet%20style.jpeg).

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/changing-default-bullet-style/#post-4805269)
 * If you have the bullet as an image, the following is suggested by [w3schools](http://www.w3schools.com/css/css_list.asp)
   as cross-browser solution:
 *     ```
       ul
       {
       list-style-type: none;
       padding: 0px;
       margin: 0px;
       }
       ul li
       {
       background-image: url(sqpurple.gif);
       background-repeat: no-repeat;
       background-position: 0px 5px;
       padding-left: 14px;
       }
       ```
   
 * Without an image try:
 *     ```
       ul
       {
       list-style-type: none;
       padding: 0px;
       margin: 0px;
       }
       ul li:before
       {
       content:"> ";
       background-position: 0px 5px;
       padding-left: 14px;
       }
       ```
   
 *  [rdellconsulting](https://wordpress.org/support/users/rdellconsulting/)
 * (@rdellconsulting)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/changing-default-bullet-style/#post-4805271)
 * You need to be more specific, so better is:
 *     ```
       .page .container ul li:before
       {
       content:"> ";
       background-repeat: no-repeat;
       background-position: 0px 5px;
       padding-left: 14px;
       }
       ```
   
 *  Thread Starter [dchandra](https://wordpress.org/support/users/dchandra/)
 * (@dchandra)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/changing-default-bullet-style/#post-4805304)
 * Thanks Sir

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Changing Default bullet style’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [dchandra](https://wordpress.org/support/users/dchandra/)
 * Last activity: [12 years, 1 month ago](https://wordpress.org/support/topic/changing-default-bullet-style/#post-4805304)
 * Status: resolved