Can you please give us a URL to the page with the button?
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
Can you explain how modify please??
And how i can insert buttons equally without table?
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>
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
You mean it is not horizontal? make the li items display: inline-block and float: left.
yes showing vertical. And when makeink preview all buttons i one place without space from another buttons.
you need margin-left:32px for each list item
i can do this in wordpress page text ??
Please can you write all code, and say where insert it will be simpler?
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(”); ?>
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
showing bad wihout spaces.. maybe is another code?