Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    that table has its width set to 100% of the content area. Additionally, there’s some margin around the images.
    Due to that, the table spreads out like that.

    Unfortunately, I’m not sure how I can help though, as this is not a table that was created with WP-Table Reloaded…

    You will need to change the width manually in the HTML code of the table and the margin of the images in the CSS file (style.css) of your theme.

    Regards,
    Tobias

    I’m having the same problem with a table…I’d like to have all the cells in the table the same size….I have placed the same image on the top row for a place holder. How do I adjust the size of the cells or make them all the same size. And can I adjust the border or padding between the image and the table lines?
    Thanks!
    http://cctustin.org/wordpress/?page_id=91

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    your images have some margin applied to them. The following CSS code should remove that and make the cells more uniform. Just paste it into the “Custom CSS” textarea on the “Plugin Options” screen.

    .wp-table-reloaded-id-1 {
      width: auto!important;
    }
    
    .wp-table-reloaded-id-1 img {
      margin: 0!important;
      padding: 0!important;
      max-width: 100%!important;
    }

    You can change the padding between the images and the border lines with this:

    .wp-table-reloaded-id-1 td {
      padding: 4px!important;
    }

    Regards,
    Tobias

    I also noticed on the “Children’s Ministry” under the “Ministries” tab that the images are not showing correctly…they are very narrow; however, when I view it on my larger screen the images are the correct proportion. Any idea why that is happening?

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    unfortunately, your link (http://cctustin.org/wordpress/?page_id=91) is no longer working. 🙁
    A server error is reported.

    Regards,
    Tobias

    sorry about that…it’s back up now….
    “I also noticed on the “Children’s Ministry” under the “Ministries” tab that the images are not showing correctly…they are very narrow; however, when I view it on my larger screen the images are the correct proportion. Any idea why that is happening”

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    that’s again coming from your theme, which (for some reason) restricts the width of images to 95%.
    Please add this to the “Custom CSS” to change this behavior for all images in tables:

    .wp-table-reloaded img {
      max-width: 100%!important;
    }

    Best wishes,
    Tobias

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Cell Width’ is closed to new replies.