Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter expquest

    (@expquest)

    Turns out the width was affecting all the normal elements like p, headings, separator, regular quote, etc. The theme was limiting the content + comments section width to a set (configurable) value of 700 pixels. The theme CSS did not include things like tables within that constraint. I updated the Additional CSS section to alter the elements affected by that 700px limit and made all content uniform. Now tables don’t overflow past the p, heading, etc content.

    Thread Starter expquest

    (@expquest)

    Thank you @joyously. Do you think this is an issue with the theme OceanWP or with the blocks themselves? It effects everything from pullquotes to the standard table to plugins like Shortcodes Ultimate and Ultimate Blocks.

    I was able to visually correct the issue by setting .single .entry-content to width: 72% (matches the theme’s set content width) and margin: auto to center it.

    .single .entry-content {
        margin-bottom: 20px;
        width: 72%;
        margin: auto;
    }
Viewing 2 replies - 1 through 2 (of 2 total)