• Resolved arrowan

    (@arrowan)


    Hi there
    thank you for a great plugin!

    Im also struggling with table widths. I have read through the other support topics, and tried a few variations, but column 3 & 4 refuse to change. Please help?

    .tablepress-id-1 {
    width: 100%;
    }

    .tablepress-id-1 .column-1 {
    width: 10% !important;
    }

    .tablepress-id-1 .column-2 {
    width: 30% !important;
    column-count: 1;
    }

    .tablepress-id-1 .column-3 {
    width: 10% !important;
    }

    .tablepress-id-1 .column-4 {
    width: 10% !important;
    }

    .tablepress-id-1 .column-5 {
    width: 20% !important;
    }

    .tablepress-id-1 .column-6 {
    width: 20% !important;
    }

    The page I need help with: [log in to see the link]

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

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    The problem seems to be coming from those column-count CSS properties that your theme adds to the CSS classes (due to a name clash).
    To override that, please try adding

    .tablepress th,
    .tablepress td {
      -webkit-column-count: 1;
      column-count: 1;
    }

    to the top of your “Custom CSS”.

    Regards,
    Tobias

Viewing 1 replies (of 1 total)
  • The topic ‘sticking table widths’ is closed to new replies.