• Resolved xylo25

    (@xylo25)


    Good day,

    I am very excited about the possibilites Tablepress comes with, but I think – I found a bug:

    – If I uncheck “he background colors of successive lines should alternate” and “Highlight a line by changing the background color when the mouse is over it” TablePress is showing some transparent rows, with mouse over color comes back.

    I cannot post a link here, sorry – but I use WordPress in newest version, as elementor pro in the newest version 2.

    What I want to achieve:

    I would like to make the whole table body 50% transparent, also it may become necessary to change the color of the lines between rows and columns.

    I’ve some CSS to switch the heading for example,

    .tablepress.table2 th {
    	background-color: white;
    	color: black;
    }

    but I tried some more CSS to achieve the transparency, but I cant get it.

    Can I get some help please?

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

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    TablePress is not setting any colors if you turn this checkbox off, so most likely, these colors are coming from your theme.
    Unfortunately, to find out more, I’d really need to see the page with the table. Can you maybe create a public test site?

    Regards,
    Tobias

    Thread Starter xylo25

    (@xylo25)

    Hey Tobias,

    I see – ok, then pls visit http://kallenkantedev.de/. Table Press is included at the section “Termine”.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for the link. However, when I view that page and click “Termine” (or the other links in the navigation), I pretty much only get a white page with the navigation also only showing one entry, and other items appearing semi-transparent…

    Regards,
    Tobias

    Thread Starter xylo25

    (@xylo25)

    Hi Tobias,

    sorry for the confusion. The menu is not linked yet, but at it is a one pager, you will find the section by scrolling.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    ah, ok 🙂

    To achieve what you want, please turn off the “Alternating Row Colors” and “Row Hover” checkboxes. Then, replace your current “Custom CSS” with this:

    .tablepress-id-2 th,
    .tablepress-id-2 td {
        background-color: rgba(255,255,255,0.25) !important;
        border-color: rgba(255,255,255,0.5) !important;
        color: #ffffff;
    }
    .tablepress-id-2 th {
        border-top: none !important;
    }

    Regards,
    Tobias

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

The topic ‘BUG and getting transparency of 50%’ is closed to new replies.