Viewing 5 replies - 1 through 5 (of 5 total)
  • Try putting this in the style.css file of your theme:

    .events-table {
    border: 1px solid #000;
    }
    Thread Starter luchayfiesta

    (@luchayfiesta)

    thank you. but it didn’t work.

    Looks like it’s remove the outer border but not the inner ones?

    In which case, try adding this as well:

    .events-table tr {
    border: 1px solid #000;
    }
    Thread Starter luchayfiesta

    (@luchayfiesta)

    no. In fact I just tried to modify the style of every tables, in the style.css of my theme. As I don’t have any other table for the time being on my blog, I tried this way.
    This style (with the interior line) is ok for me. But I would like to have a solution concerning only the event table

    you can try something like

    table.events-table tr {
     border-left: solid #fff 1px;
     border-right: solid #fff 1px;
     border-top: solid #fff 1px;
     border-bottom: solid #fff 1px;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Event list table’ is closed to new replies.