*

Anonymous

  • ****
  • 200 posts
register form width
« on: January 26, 2018, 11:24:00 AM »
hi,
i tried a lot! but cant able to find the css.

how will i strech the width, of user register form so that input box form field will fit in that user form,
input box is reflecting from cdn i cant customize that,

example form uploaded below
Innovation is change that unlocks new value  ;)

Marked as best answer by frosticek on January 28, 2018, 12:42:18 AM
*

pitbull

  • ***
  • 98 posts
Re: register form width
« Reply #1 on: January 27, 2018, 04:52:02 PM »
try to find this rule inside the style.css file:

Code: [Select]
#i-forms .box {
and set the max-width per your wish ;) eg

Code: [Select]
#i-forms .box {
    width: 100%;
    max-width: 640px;
    display: inline-block;
    margin: 0 auto;
}

*

Anonymous

  • ****
  • 200 posts
Re: register form width
« Reply #2 on: January 27, 2018, 05:10:24 PM »
 :)
thanks a lot pitbull,

Innovation is change that unlocks new value  ;)