• Anonymous User

    (@anonymized-20586949)


    Hi, Is it possible to change the default style of column block? For example, whenever I make a new single column block, I want the width to be 1024, font size 0.8rem, and block spacing 10px.Is it possible to change like this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @ferhyunt

    You can change the width, font size, and block spacing for single columns using the block settings for each column. These settings can be found on the right side as shown in this short video.

    Let me know if that helps

    Thread Starter Anonymous User

    (@anonymized-20586949)

    Sorry I was not clear about my question, I know I can change the values, whenever I make a new column I need to manually readjust the values. Is it possible to change the ‘default’ value, so that when I make a new one it already has the data that I use often?

    Hi @ferhyunt

    Is it possible to change the ‘default’ value, so that when I make a new one it already has the data that I use often?

    I see, you can use CSS to adjust the padding, font size, and width for all your columns. You can add the CSS code below to Customiser > Additional CSS area.

    .wp-block-column {
        padding: 10px;
        font-size: 0.8rem;
        flex-basis: 1024px !important;
    }

    I’m not sure if having the width of all your columns as 1024px is the best idea, this will conflict when you want to have more than one column on the column block.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Default column block styles’ is closed to new replies.