Support » Plugin: WP-Table Reloaded » [Plugin: WP-Table Reloaded] Content Alignment Issue

  • Resolved kevb8lly

    (@kevb8lly)


    Hi. You previously helped me with alignment on a table, which worked fine. I applied that alignment globally, (or at least I think I have), but it isn’t applying to more than one table.

    At the moment I have 2 tables one on each WP page, but there will be more. All of the modified css is working except for the vertical image alignment.

    This is the css I’m using:

    .wp-table-reloaded {
      border: none!important;
      border-collapse: collapse!important;
      border-spacing: 0px!important; /*border controlled by main template css line 1202*/
      font-size: 13px;
    }
    
    .wp-table-reloaded .column-1  {
    width: 300px;
    color:#de0011;
    }
    
    .wp-table-reloaded .column-3 {
    width: 300px;
    }
    color:#777;
    
    .wp-table-reloaded .column-2 {
    width: 250px;
    vertical-align: middle !important;
      text-align: center !important;
    }

    Working page is http://www.m-g-pen.com/wp/ball-pens/

    Problem page http://www.m-g-pen.com/wp/gel-pen-page/

    It may be just a setting I haven’t set on the new table, but I can’t see it.

    Kev

    http://wordpress.org/extend/plugins/wp-table-reloaded/

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

    (@tobiasbg)

    Hi Kev,

    the reason for this is the line

    color:#777;

    as it stands outside of a CSS block and thus is not interpreted. In fact, it causes an error due to which the last block of code is not executed.

    You will just need to move that line before the closing } in the line above it.

    Regards,
    Tobias

    Thread Starter kevb8lly

    (@kevb8lly)

    What a numpty. I’m glad it was simple, sorry it was stupid!

    Thanks again, it’s a terrific plug in.

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    sure, no problem 🙂 Great that this fixed it so easily.

    Best wishes,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Content Alignment Issue’ is closed to new replies.