# Страница создания новой учетной записи с множеством пользовательских полей имеет проблему с высотой

**URL:** https://meta.discourse.org/t/create-new-account-page-with-lots-of-custom-fields-has-height-problem/121099
**Category:** Bug
**Created:** [23.Июнь.2019 09:55:26 UTC](https://meta.discourse.org/t/create-new-account-page-with-lots-of-custom-fields-has-height-problem/121099 "2019-06-23T09:55:26Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![BishopV](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/bishopv/32/185715_2.png) [@BishopV](https://meta.discourse.org/u/BishopV)
#### Post date: [23.Июнь.2019 09:55:26 UTC](https://meta.discourse.org/t/create-new-account-page-with-lots-of-custom-fields-has-height-problem/121099/1 "2019-06-23T09:55:26Z")

</div>

I facing some issue from my discourse when new member signup using mobile . I think because created many custom field and make the fill up form cannot scroll up to fill my email , user name and passwords . Anyone facing same issue ? ![image|281x500]

I try adjust it from CSS / Mobile ( sorry I’m dump in CSS ) but still cannot fix the issue.

```css
create-account .user-field label {
  width: 190px
}

.create-account .user-field .controls {
  margin-left: 100px
}

```

---

<div class="post-metadata">

### Author: ![awesomerobot](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/awesomerobot/32/142900_2.png) [@awesomerobot](https://meta.discourse.org/u/awesomerobot)
#### Post date: [24.Июнь.2019 16:26:44 UTC](https://meta.discourse.org/t/create-new-account-page-with-lots-of-custom-fields-has-height-problem/121099/2 "2019-06-24T16:26:44Z")

</div>

I just pushed a fix that solves this issue:

[https://github.com/discourse/discourse/commit/9e54e0141e52afa7d02ebef76b800a8731682486](https://github.com/discourse/discourse/commit/9e54e0141e52afa7d02ebef76b800a8731682486)

If you want to add this fix immediately you can add this css to your mobile stylesheet:

```css
.fixed-modal {
  .modal-middle-container {
    margin-bottom: 0;
  }
  .modal-inner-container {
    max-height: 90vh;
    overflow: auto;
  }
}

```

---

<div class="post-metadata">

### Author: ![codinghorror](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/codinghorror/32/110067_2.png) [@codinghorror](https://meta.discourse.org/u/codinghorror)
#### Post date: [24.Июнь.2019 20:26:54 UTC](https://meta.discourse.org/t/create-new-account-page-with-lots-of-custom-fields-has-height-problem/121099/3 "2019-06-24T20:26:54Z")

</div>


