Title: Maxbutton button formatting
Last modified: August 22, 2016

---

# Maxbutton button formatting

 *  Resolved [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/)
 * Hello,
 * I’ve created three buttons. I need them to line up (horizontally) across the 
   middle of my page…
 * When I enter the shortcode for each button they don’t line up… the button on 
   the far left is fine.
 * The button in the middle is centered, but below the left button.
 * The button on the right is below the button in the middle.
 * Please advise as to why this is happening and what I need to do to fix it.
 * Thanks in advance.
 * [https://wordpress.org/plugins/maxbuttons/](https://wordpress.org/plugins/maxbuttons/)

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

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

 *  Plugin Author [johnbhartley](https://wordpress.org/support/users/johnbhartley/)
 * (@johnbhartley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426337)
 * Have you tried setting specific container width and then setting the container
   to “display: inline-block” in Alignment?
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426346)
 * no, i will try this and let you know.
 * One thing I forgot to mention is there is a slider above the three buttons… here
   is the code:
 * <div style=”margin-top:-40px;height:400px;”>[slider id=’155′ name=” size=’full’]
   </div>
    <style>.page-header-title{display:none}</style>
 * [maxbutton id=”6″][maxbutton id=”7″]
 *  Plugin Author [johnbhartley](https://wordpress.org/support/users/johnbhartley/)
 * (@johnbhartley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426347)
 * That shouldn’t have any effect on the buttons. If the container doesn’t work,
   try using a table to place the buttons where you’d like them to go.
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426352)
 * trying that now…
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426356)
 * getting closer… it’s supposed to look like this:
 * button1 button2 button3
 * what it looks like is:
 * button1 button2
 * I’m using a table, but its still not lining up.
 * Thoughts?
 *  Plugin Author [johnbhartley](https://wordpress.org/support/users/johnbhartley/)
 * (@johnbhartley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426357)
 * Can’t do much else unless you link to it or copy the table code you’re trying
   to use.
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426358)
 * ok, one sec…
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426359)
 * <table style=”width:100%”>
    <tr> <th>[maxbutton id=”6″]</th> <th>[maxbutton id
   =”7″]</th> </tr> </table>
 *  Plugin Author [johnbhartley](https://wordpress.org/support/users/johnbhartley/)
 * (@johnbhartley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426361)
 * Switch from ‘th’ to ‘td’ and add a third ‘td’ to put the third button in.
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426363)
 * trying now…
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426366)
 * ok, that worked… how do I center each button within the table?
 * And thank you for your help.
 *  Thread Starter [AM_CW](https://wordpress.org/support/users/am_cw/)
 * (@am_cw)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426374)
 * got it.
 *  [Smellsley](https://wordpress.org/support/users/smellsley/)
 * (@smellsley)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426665)
 * I’ve Aligned them using the table method but is there any way of making the borders
   of the table invisible?
 * This is my code:
 * <table style=”width:100%”>
    <tr> <th>[maxbutton id=”1″]</th> <th>[maxbutton id
   =”2″]</th> <th>[maxbutton id=”3″]</th> </tr> </table>
 * Thanks
 *  [Stevinoz](https://wordpress.org/support/users/stevinoz/)
 * (@stevinoz)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426670)
 * use border 0 in the table:
 * <table border=”0″ width=”100%”>
    <tr> <td>[maxbutton id=”1″]</td> <td>[maxbutton
   id=”2″]</td> <td>[maxbutton id=”3″]</td> </tr> </table> </body>
 * I would also get rid of the width=”100%”
 *  Plugin Author [senoff](https://wordpress.org/support/users/senoff/)
 * (@senoff)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/#post-5426671)
 * Thanks for the help Steven,
 * Please go to maxbuttons.com/contact and send us a hello email.
 * Best,
 * Bob

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

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

The topic ‘Maxbutton button formatting’ 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/)

 * 22 replies
 * 9 participants
 * Last reply from: [mrmatarazzo](https://wordpress.org/support/users/mrmatarazzo/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/maxbutton-button-formatting/page/2/#post-5426710)
 * Status: resolved