Title: Responsive &#8230;
Last modified: August 22, 2016

---

# Responsive …

 *  [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/)
 * Hi,
    i very like this plugin, but have big problem with responsive. My theme 
   is responsive, when switching for ipad or mobile devices or on computer with 
   smaller monitor width – show half button…etc., 2 buttons good and one cut of 
   half When will be fixed this thing ??
 * [https://wordpress.org/plugins/maxbuttons/](https://wordpress.org/plugins/maxbuttons/)

Viewing 15 replies - 1 through 15 (of 27 total)

1 [2](https://wordpress.org/support/topic/responsive-216/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/responsive-216/page/2/?output_format=md)

 *  Plugin Author [AlanP57](https://wordpress.org/support/users/alanp57/)
 * (@alanp57)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747059)
 * Can you please give us a URL to the page with the button?
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747065)
 * yes you can check how is on ipad [http://mobiletest.me/ipad_mini_emulator/#u=http://sveikatosgidas.lt/temos](http://mobiletest.me/ipad_mini_emulator/#u=http://sveikatosgidas.lt/temos)
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747067)
 * or on phone device [http://mobiletest.me/htc_one_emulator/#u=http://sveikatosgidas.lt/temos](http://mobiletest.me/htc_one_emulator/#u=http://sveikatosgidas.lt/temos)
 *  Plugin Author [AlanP57](https://wordpress.org/support/users/alanp57/)
 * (@alanp57)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747069)
 * I see that your buttons are in a HTML table and it is not resizing. The buttons
   themselves are not responsive, at least not yet but will be at a later date. 
   You will need to modify the HTML/CSS around the buttons to respond to the changes
   in the content width. Probably you should not use a table.
 * Alan
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747071)
 * Can you explain how modify please??
    And how i can insert buttons equally without
   table?
 *  Plugin Author [AlanP57](https://wordpress.org/support/users/alanp57/)
 * (@alanp57)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747075)
 * Put them into a horizontal unordered list with a margin-left for the list item(
   and no margin-right) that will separate them equally. Then when the content width
   is less, they will automatically wrap to the next line.
 *     ```
       <ul>
       <li>button</li><li>button</li><li>button</li>
       <li>button</li><li>button</li><li>button</li>
       </ul>
       ```
   
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747077)
 * you mean like this:
    -  <li style=”text-align: left;”>[maxbutton id=”1″]
       <li style=”text-align: 
      left;”>[maxbutton id=”1″] <li style=”text-align: left;”>[maxbutton id=”1″]
      <li style=”text-align: left;”>[maxbutton id=”1″] <li style=”text-align: left;”
      >[maxbutton id=”1″] <li style=”text-align: left;”>[maxbutton id=”1″]
 * But its not straight showing
 *  Plugin Author [AlanP57](https://wordpress.org/support/users/alanp57/)
 * (@alanp57)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747080)
 * You mean it is not horizontal? make the li items display: inline-block and float:
   left.
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747081)
 * yes showing vertical. And when makeink preview all buttons i one place without
   space from another buttons.
 *  Plugin Author [AlanP57](https://wordpress.org/support/users/alanp57/)
 * (@alanp57)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747083)
 * you need margin-left:32px for each list item
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747084)
 * i can do this in wordpress page text ??
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747085)
 * Please can you write all code, and say where insert it will be simpler?
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747091)
 * Ok i did, its great, sorry for my mistake.
 * Can you say how insert this :
    [maxbutton id=”25″] [maxbutton id=”26″] [maxbutton
   id=”25″]
 * [maxbutton id=”24″] [maxbutton id=”24″] [maxbutton id=”27″]
 * in the code :
 * <?php echo do_shortcode(”); ?>
 *  Plugin Author [AlanP57](https://wordpress.org/support/users/alanp57/)
 * (@alanp57)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747092)
 * Try this:
 *     ```
       <ul>
       <li><?php echo do_shortcode('[maxbutton id="25"]'); ?></li>
       <li><?php echo do_shortcode('[maxbutton id="26"]'); ?></li>
       <li><?php echo do_shortcode('[maxbutton id="25"]'); ?></li>
       <li><?php echo do_shortcode('[maxbutton id="24"]'); ?></li>
       <li><?php echo do_shortcode('[maxbutton id="24"]'); ?></li>
       <li><?php echo do_shortcode('[maxbutton id="27"]'); ?></li>
       </ul>
       ```
   
 * [http://codex.wordpress.org/Function_Reference/do_shortcode](http://codex.wordpress.org/Function_Reference/do_shortcode)
 *  Thread Starter [regis999](https://wordpress.org/support/users/regis999/)
 * (@regis999)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/#post-5747093)
 * showing bad wihout spaces.. maybe is another code?

Viewing 15 replies - 1 through 15 (of 27 total)

1 [2](https://wordpress.org/support/topic/responsive-216/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/responsive-216/page/2/?output_format=md)

The topic ‘Responsive …’ is closed to new replies.

 * ![](https://ps.w.org/maxbuttons/assets/icon-128x128.png?rev=1378636)
 * [MaxButtons - Create buttons](https://wordpress.org/plugins/maxbuttons/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/maxbuttons/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/maxbuttons/)
 * [Active Topics](https://wordpress.org/support/plugin/maxbuttons/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/maxbuttons/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/maxbuttons/reviews/)

 * 27 replies
 * 2 participants
 * Last reply from: [regis999](https://wordpress.org/support/users/regis999/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/responsive-216/page/2/#post-5747116)
 * Status: not resolved