You are viewing limited content. For full access, please sign in.

Question

Question

Modern Designer form-header padding

asked on February 1, 2024

I am trying to figure out the CSS to adjust the padding on the Form Title. I can manually adjust the padding in developer mode. I have tried variations of this code (below), without success.

.form-container .form-header {
    width: 100%;
    padding: 0px 0px 0;
    display: flex;
    flex-direction: column;
    height: auto;
!important}

My aim is to have a logo fill the entire form title area with no margins. 

Jonathan

0 0

Answer

SELECTED ANSWER
replied on February 1, 2024

Answering my own question...

I had the syntax wrong around the !important. Here is the correct CSS

.form-container .form-header {
    width: 100%;
    padding: 0px 0px 0;
    display: flex;
    flex-direction: column;
    height: auto
!important;}

 

0 0

Replies

You are not allowed to reply in this post.
You are not allowed to follow up in this post.

Sign in to reply to this post.