• I’m trying to change the font size for all tables and remove the borders from one table but it seems to be affecting all tables i don’t understand what I’m doing wrong below is the code i put into custom css
    i have javascript unchecked but default and custom css are checked
    the site in question is
    salegolfcars.com/wordpress
    one table is on main page(id=2 want no border) the next is on carts for sale(id=1)

    .wp-table-reloaded td {
    font-family: Tahoma;
    font-size: 14px;
    color: #000000;

    .wp-table-reloaded-id-2, .wp-table-reloaded-id-2 td, .wp-table-reloaded-id-2 th {
    border: none!important;
    border-collapse: collapse!important;
    border-spacing: 0px!important;

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

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

    (@tobiasbg)

    Hi,

    you are not closing your CSS commands properly. There must be a closing curly bracket } after the commands.
    Please try again with

    .wp-table-reloaded td {
      font-family: Tahoma;
      font-size: 14px;
      color: #000000;
    }
    .wp-table-reloaded-id-2, .wp-table-reloaded-id-2 td, .wp-table-reloaded-id-2 th {
      border: none!important;
      border-collapse: collapse!important;
      border-spacing: 0px!important;
    }

    Regards,
    Tobias

    Thread Starter kebova1

    (@kebova1)

    that did the trick, i knew it was something simple, I’m a long time html user just getting started on css. Thanks! Great plug-in too!

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    very cool! Great to hear that this solved it 🙂 Thanks for the confirmation.

    Best wishes,
    Tobias

    Thread Starter kebova1

    (@kebova1)

    I have another question now…I’m trying to bold row 3 and 6 in table 2 (the front page featured cart section) because it is the price I don’t want to use strong commands in the individual cells, because the client wants to edit cells on his own so id rather do custom css
    below is the custom css i tried to use but it is not working

    .wp-table-reloaded-id-2 .row-3
    .wp-table-reloaded-id-2 .row-6 {
    font-weight: bold!important;
    }

    below is my entire custom css

    .wp-table-reloaded-id-2 td {
    text-align:center;
    vertical-align:middle;
    }
    .wp-table-reloaded td {
    font-family: Tahoma;
    font-size: 14px;
    color: #000000;
    }
    .wp-table-reloaded-id-2, .wp-table-reloaded-id-2 td, .wp-table-reloaded-id-2 th {
    border: none!important;
    border-collapse: collapse!important;
    border-spacing: 0px!important;
    }
    .wp-table-reloaded-id-2 .row-3
    .wp-table-reloaded-id-2 .row-6 {
    font-weight: bold!important;
    }

    page in question is here

    Thanks!

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    this should be fairly simply: There’s a comma missing in the code. Please try

    .wp-table-reloaded-id-2 .row-3 td,
    .wp-table-reloaded-id-2 .row-6 td {
      font-weight: bold!important;
    }

    Regards,
    Tobias

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

The topic ‘[Plugin: WP-Table Reloaded] two changes in css wont work seperatly’ is closed to new replies.