Viewing 1 replies (of 1 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi Mike,

    to do this, you can use some CSS code that needs to be pasted into the “Custom CSS” textarea on the “Plugin Options” screen of WP-Table Reloaded:

    .wp-table-reloaded-id-1,
    .wp-table-reloaded-id-2 {
      float: left;
      margin-right: 20px;
    }

    The problem here is the text below the tables which will not be moved as expected. To achieve this, you will need to wrap the table Shortcode and the text in a <div> container, like

    <div class="two-columns">
    
    [table id=1 /]
    
    Text...
    
    </div>

    Then the CSS code above would have to be changed to

    .two-columns {
      float: left;
      margin-right: 20px;
    }

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Tables side by side’ is closed to new replies.