• Resolved carlay111

    (@carlay111)


    Hello,

    Thancks for this great extension.
    I’m a newbie in web developpement.

    I was wondering how to modify the max width of the wp-block-columns block that is set by default to 80 rem?
    I would likde to set it to 100%.

    Thanck you from France!

Viewing 1 replies (of 1 total)
  • Plugin Author Twentig

    (@twentig)

    Bonjour @carlay111,

    Thanks for your message.

    In the Columns block top toolbar, you can select the block alignment and choose to display the columns in Full Width.

    If you want really want to make all the columns blocks on your site to be 100%, you can add the following CSS inside Customizer > Additional CSS:

    .wp-block-columns {
    	max-width: 100% !important;
    	width: 100% !important;
    	padding-left: 2rem;
    	padding-right: 2rem;
    }
    
    @media (min-width: 700px) {
    	.wp-block-columns {
    		padding-left: 4rem;
    		padding-right: 4rem;
    	}
    }

    I hope the above is useful to you.
    If you enjoy Twentig, please leave a review. It would mean a lot to me 🙂

    Diane

Viewing 1 replies (of 1 total)

The topic ‘Column width’ is closed to new replies.