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

Question

Question

CSS: form-title-warp

asked on December 20, 2021

Hi, does anybody know the CSS line for changing the padding on a form-title-wrap.

this is what I have but it's not working. I want to make it 0px to the left.

 

 

 

Tab Form_Title_Wrap.jpg
Form_title_wrap.jpg
0 0

Answer

SELECTED ANSWER
replied on December 21, 2021 Show version history

A couple things:

  1. You need to use # for id selectors (the period is for class selectors)
  2. To override inline style you'll need to add !important
#form-title-wrap {
    padding: 0px 0px 0px 30px !important;
}

However, it depends what you're trying to do. If you have a logo image, the value of the form wrap padding is generated based on the logo size/margin in which case changing the title wrap padding alone might not actually make any noticeable difference.

2 0

Replies

replied on December 21, 2021

Thanks, it works nicely!!!

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

Sign in to reply to this post.