Title: Inline menu list
Last modified: August 22, 2016

---

# Inline menu list

 *  Resolved [mgincnj](https://wordpress.org/support/users/mgincnj/)
 * (@mgincnj)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/inline-menu-list/)
 * Is there a way to format the output of the menu content item as an inline list?
 * I can generate a list without of menu items easily enough:
    `[content menu=”visit-
   menu” ul=”inlinemenu”]
 *     ```
       I have CSS in my child theme (Twenty Fourteen) as follows:
       ```
   
 * .inlinemenu {
    display:inline; list-style-type: none; }`
 * This succeeds in getting rid of the bullets, but the list is still stacked vertically.
   I think the problem is that the display: inline needs to apply to BOTH the li
   and the ul tags. However, I can only figure out how to get the class assigned
   to the ul. Is there a way to associate it with both tags?
 * [https://wordpress.org/plugins/custom-content-shortcode/](https://wordpress.org/plugins/custom-content-shortcode/)

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

 *  Plugin Author [Eliot Akira](https://wordpress.org/support/users/miyarakira/)
 * (@miyarakira)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/inline-menu-list/#post-5646225)
 * How about this?
 *     ```
       .inlinemenu, .inlinemenu li {
         display: inline;
         padding-left: 0;
         list-style-type: none;
       }
       ```
   
 * To get at submenus, you may need to target `.inlinemenu ul` as well.
 *  Thread Starter [mgincnj](https://wordpress.org/support/users/mgincnj/)
 * (@mgincnj)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/inline-menu-list/#post-5646323)
 * It worked! Thank you.
 * Also, Eliot, thank you for the rapid response and the fantastic plugin. I used
   to use Kalin’s short code plugin, which is no longer supported, and never liked
   the replacement. I find your plugin wonderful to use, and will write up a glowing
   review after I deliver my system.
 * Cheers…

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

The topic ‘Inline menu list’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/custom-content-shortcode_766976.svg)
 * [Custom Content Shortcode](https://wordpress.org/plugins/custom-content-shortcode/)
 * [Support Threads](https://wordpress.org/support/plugin/custom-content-shortcode/)
 * [Active Topics](https://wordpress.org/support/plugin/custom-content-shortcode/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/custom-content-shortcode/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/custom-content-shortcode/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [mgincnj](https://wordpress.org/support/users/mgincnj/)
 * Last activity: [11 years, 5 months ago](https://wordpress.org/support/topic/inline-menu-list/#post-5646323)
 * Status: resolved