Title: Remove bullet points from Shortcode menu
Last modified: October 20, 2016

---

# Remove bullet points from Shortcode menu

 *  [Squidpeg9](https://wordpress.org/support/users/squidpeg9/)
 * (@squidpeg9)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-bullet-points-from-shortcode-menu/)
 * I am using a shortcode I created to pull my main nav menu into an area on my 
   testimonials page. It seems to work, except it has the bullet points in front
   of the nav menu items. How can I fix this?
 * Here is the page:
    [http://creatingpositivefutures.com/testimonials-new/](http://creatingpositivefutures.com/testimonials-new/)
 * Here is the code I am using:
 *     ```
       function print_menu_shortcode($atts, $content = null) {
           extract(shortcode_atts(array( 'name' => null, ), $atts));
           return wp_nav_menu( array( 'menu' => $name, 'echo' => false, 'container_class' => 'fusion-main-menu', 'menu_class' => 'fusion-menu', 'menu_id' => 'menu-main' ) );
       }
   
       add_shortcode('menu', 'print_menu_shortcode');
       ```
   

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

 *  [arunmilky](https://wordpress.org/support/users/arunmilky/)
 * (@arunmilky)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-bullet-points-from-shortcode-menu/#post-8333577)
 * hai squidpeg
 * try this code on your css..
 * .fusion-main-menu ul {
    list-style: none!important; }
 *  [AddWeb Solution](https://wordpress.org/support/users/addweb-solution-pvt-ltd/)
 * (@addweb-solution-pvt-ltd)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-bullet-points-from-shortcode-menu/#post-8333662)
 * The bullet points problem occure by your css.
    You can change .element-container.
   double-column ul, .element-container .op-text-block ul {list-style:none;} into
   your style.css file. Or You can add below function into your functions.php file
 *     ```
       function custom_style() {
               echo '<style>.element-container .double-column ul, .element-container .op-text-block ul {list-style:none !important;}</style>';
       }
       add_action('wp_head', 'custom_style');
       ```
   
 * Let me know incase of any concern with the same.
 *  Thread Starter [Squidpeg9](https://wordpress.org/support/users/squidpeg9/)
 * (@squidpeg9)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/remove-bullet-points-from-shortcode-menu/#post-8412910)
 * Thank you guys!
 *     ```
       .fusion-main-menu ul {
       list-style: none!important;
       }
       ```
   
 *  Worked for me!

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

The topic ‘Remove bullet points from Shortcode menu’ is closed to new replies.

## Tags

 * [menu](https://wordpress.org/support/topic-tag/menu/)
 * [php](https://wordpress.org/support/topic-tag/php/)
 * [shortcode](https://wordpress.org/support/topic-tag/shortcode/)

 * In: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
 * 3 replies
 * 3 participants
 * Last reply from: [Squidpeg9](https://wordpress.org/support/users/squidpeg9/)
 * Last activity: [9 years, 7 months ago](https://wordpress.org/support/topic/remove-bullet-points-from-shortcode-menu/#post-8412910)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
