• Resolved eckh20

    (@eckh20)


    Hi,

    I’m trying to set up a table in this page here: http://www.gmhealthriskweek.org/who-we-are/

    As you can see, the table is wider than the page will allow. I’ve tried reducing the size of the columns (nothing happened) and I’ve tried having just two columns (it just spread the pictures out so the second one half disappeared). Is this something to do with the table interacting with the theme? Can you advise on how I reduce the table in relation to the size of the page please?

    Thanks!

    ps. I’m using Chrome, and I’ve got the latest versions of WordPress and Tablepress.

    http://wordpress.org/plugins/tablepress/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    Most likely, the reason for this is that the width that is set for the images forces a higher minimum width on the table (tables behave differently than other elements on a web page, in this regard, as they will then just extend, even if that means that they are larger than the available/desired content area). To change this, you could extend one of the blocks in your current “Custom CSS” with the max-width property:

    .tablepress-id-1 td img {
    	border: none;
    	padding: 0;
    	margin-bottom: 0;
    	max-width: 100%;
    }

    Regards,
    Tobias

    Thread Starter eckh20

    (@eckh20)

    That’s looking much better, thanks!

    Just one other quick question – how do I align images to the centre of the box? They’re fine horizontally but tend to align to the top of the box which isn’t ideal. Is there a way to fix this?

    Thanks!

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    good to hear that this helped!

    That should be possible with this “Custom CSS”:

    .tablepress-id-1 tbody td {
      vertical-align: middle;
    }

    Regards,
    Tobias

    Thread Starter eckh20

    (@eckh20)

    Ideal! Together with a few other posts on the support forum I think I’ve cracked it. Thanks so much!

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    great! Very nice 🙂
    And no problem, you are very welcome!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Whole table width’ is closed to new replies.