• Resolved engenderedconvos

    (@engenderedconvos)


    i can’t find any way to adjust the width of the tables i insert into my blog pages so that the words all fit on one line.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @engenderedconvos!
    Try pasting this code in Appearance> Customize> Add CSS.

    .post-inner.thin figure.wp-block-table.is-style-stripes {
            left margin: -150px;
            right margin: -150px;
            width: 100%! important;
            minimum width: 800px;
    }
    
    .post-inner.thin tbody {
            font size: 16px;
    }

    If you don’t like how it finally looks, just delete it.
    Regards!!

    Thread Starter engenderedconvos

    (@engenderedconvos)

    Thank you for your suggestion, Mateo! It didn’t seem to make any difference though.

    Sorry @engenderedconvos

    There was a problem in the code i shared with you, here it goes again!

    .post-inner.thin figure.wp-block-table.is-style-stripes {
           margin-left: -150px;
            margin-right: -150px;
            width: 100%! important;
            min-width: 800px;
    }
    
    .post-inner.thin tbody {
            font-size: 16px;
    }
    Thread Starter engenderedconvos

    (@engenderedconvos)

    It’s worked now!! Thank you so much!!!

    Thread Starter engenderedconvos

    (@engenderedconvos)

    Hi @mateico! I realized that the formatting does not seem to apply in mobile view. Is there anything I do to adjust the table widths for mobile view as well?

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

The topic ‘adjusting table widths’ is closed to new replies.