Is there anyway to remove the default grey bar from the top of a form?

Is there anyway to remove the default grey bar from the top of a form?
image

Hello @Amys_Turtlgal,

You can use this CSS to change the background color of the toolbar to white:

.ms-CommandBar.fd-form.fd-form-toolbar {
    background-color: white !important;
}
1 Like