• Resolved indianwhistlers

    (@indianwhistlers)


    Hi

    i need to have transparent background for the data in the table. So that along with border collapse i have an invisible table but the data will be disciplined and aligned.

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

    (@tobiasbg)

    Hi,

    usually something like

    .wp-table-reloaded, .wp-table-reloaded td, .wp-table-reloaded th {
      background: none!important;
    }

    works to remove the background.
    If not, please provide the URL to the page with your table.

    Best wishes,
    Tobias

    Thread Starter indianwhistlers

    (@indianwhistlers)

    is “!important” a comment or code?

    thanks, it works.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    it is part of the code and basically tells the browser to give this setting a higher precedence, in case there are several of the same setting for one element. This for example happens, when both the plugin and the theme contain CSS for the same element on the page.

    Regards,
    Tobias

    Hi I attempted to make the first column transparent however it’s still coming out the default white color. I’ve been able to change the actual colors of the columns but when I try to do transparent it doesn’t work.

    this is the page https://simplyskyy.com/lutishiawp/

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your question.

    There is just a tiny thing missing: As you successfully set the column background color to “transparent”, you are now seeing the table’s color, which “sits” behind the column. I know that sounds weird, but think of it as several layers.
    So, simply change the table’s background color as well, with this additionall code:

    .wp-table-reloaded-id-1 {
     background-color: transparent!important;
    }

    Best wishes,
    Tobias

    OMG thank you thank you thank you.

    One other quick question. I was attempting to put a border around the 2nd column but every time I did it would put the border around both parts.

    This plug in ROCKS!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    not sure what you mean with “around both parts”, but this code should add a border:

    .wp-table-reloaded-id-1 .column-2 {
      border: 2px solid #000!important;
    }

    Best wishes,
    Tobias

    haaaaaaaaaaaa thank you so much, this transparency issue has been bugging me all day !

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    cool, nice to hear that you found a solution here in the forums! ??

    Best wishes,
    Tobias

    Hello Tobias,
    I’m having trouble with this code. Perhaps I’m inserting it into the wrong place in the plugin? I’m new to the plugin. Please see this page: https://biggspark.com/?page_id=57

    Thanks!
    -netta

    i think i’ve found the answer in another thread! so, please disregard my previous post. i’m all set now. thank you for such an amazing plugin!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    yes, that other thread would be a possibility for your case.

    Regards,
    Tobias

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘[Plugin: WP-Table Reloaded] Transparent background’ is closed to new replies.