• I am having trouble decreasing the row height on my social networking table that I have created in my sidebar. I can decrease the column width but not the row height. I would like the icons to align very close together, almost touching if possible. I would also like the top row closer to the widget title (Connect) but I am guessing decreasing the row size will help solve that problem.

    Here is my site: https://gator1240.hostgator.com/~jsnyder7/amitestsite.com/?page_id=13

    Here is my code:

    .wp-table-reloaded-id-5, .wp-table-reloaded-id-5 td {
    border: none!important;
    border-collapse: collapse!important;
    border-spacing: 0px!important;
    margin: 0!important;
    padding: 0!important;
    width: 48px!important;
    height: 48px!important;
    }

    Thank you for any help you can give me! This is a great plugin and so useful!

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

    (@tobiasbg)

    Hi,

    you have successfully eliminated all margins on the cell, however there are some margins left around the actual images that are shown in the cells.

    Please try adding this CSS:

    .wp-table-reloaded-id-5 td img {
      margin: 0!important;
    }

    After that, you should not even need the width and height attributes in the first part of the code.
    To further reduce the space between the images, you can try reducing the padding, by adding this to the above (just change the value to your liking):

    padding: 2px!important;

    Best wishes,
    Tobias

    Thread Starter JSnyder27

    (@jsnyder27)

    Thank you Tobias! I had to reduce the padding around my original images and then your code worked. Here’s what I ended up with:

    .wp-table-reloaded-id-5, .wp-table-reloaded-id-5 td, .wp-table-reloaded-id-5 td img {
    border: none!important;
    border-collapse: collapse!important;
    border-spacing: 0px!important;
    margin: 0!important;
    padding: 2px;!important;
    width: 48px!important;
    }

    I also made a donation! I appreciate your help.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    nice to hear that it worked, and thanks a lot for your donation! I really appreciate it!

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Need help adjusting row height’ is closed to new replies.