• 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/

Viewing 15 replies - 1 through 15 (of 27 total)
  • Plugin Author AlanP57

    (@alanp57)

    Can you please give us a URL to the page with the button?

    Thread Starter regis999

    (@regis999)

    Thread Starter regis999

    (@regis999)

    Plugin Author AlanP57

    (@alanp57)

    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

    (@regis999)

    Can you explain how modify please??
    And how i can insert buttons equally without table?

    Plugin Author AlanP57

    (@alanp57)

    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

    (@regis999)

    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

    (@alanp57)

    You mean it is not horizontal? make the li items display: inline-block and float: left.

    Thread Starter regis999

    (@regis999)

    yes showing vertical. And when makeink preview all buttons i one place without space from another buttons.

    Plugin Author AlanP57

    (@alanp57)

    you need margin-left:32px for each list item

    Thread Starter regis999

    (@regis999)

    i can do this in wordpress page text ??

    Thread Starter regis999

    (@regis999)

    Please can you write all code, and say where insert it will be simpler?

    Thread Starter regis999

    (@regis999)

    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

    (@alanp57)

    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

    Thread Starter regis999

    (@regis999)

    showing bad wihout spaces.. maybe is another code?

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

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