Site logo

Archived topic

Wordpress separator thickness

1 reply · Started by Grey on April 10, 2022

Viewing posts 1–2 of 2

Hey guys, I'm sorry for this question. I am sure there is a simple solution but I haven't been able to figure out how to change the line thickness of a separator from Wordpress.
Thank you so much for your help!

Hi Grey,

If you would like to modify just select Separator Blocks, you may add my-separator Class to their Additional CSS classes field as such: https://share.getcloudapp.com/nOuRXXlw

Then, add this CSS in Appearance > Customize > Additional CSS:

.wp-block-separator.my-separator {
    border-top: solid 10px;
}

if you would like to apply this to all Separator Blocks instead, use this:

.wp-block-separator {
    border-top: solid 10px;
}

Kindly modify 10px to your preferred value.

Hope this helps! :)

This archived topic is closed to new replies.