# Placeholder בשדות נפתחים בדף ההרשמה מתנגש עם הטקסט '(בחר אפשרות)' במובייל

**URL:** https://meta.discourse.org/t/dropdown-fields-placeholder-on-signup-page-clashes-with-select-an-option-text-on-mobile/286804
**Category:** Bug
**Tags:** user-custom-fields
**Created:** [28 בנובמבר,‏ 2023,‏ 4:20am UTC](https://meta.discourse.org/t/dropdown-fields-placeholder-on-signup-page-clashes-with-select-an-option-text-on-mobile/286804 "2023-11-28T04:20:47Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![nathank](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nathank/32/290039_2.png) [@nathank](https://meta.discourse.org/u/nathank)
#### Post date: [28 בנובמבר,‏ 2023,‏ 4:20am UTC](https://meta.discourse.org/t/dropdown-fields-placeholder-on-signup-page-clashes-with-select-an-option-text-on-mobile/286804/1 "2023-11-28T04:20:47Z")

</div>

I’ve just gone to test our signup process via mobile in anticipation of a large number of signups this week.

On mobile, field name on dropdown fields is displayed over the top of the `(select an option)` text:

 ![72448df20fe3c38bbfe2f0e8008ab781f225fd71](https://global.discourse-cdn.com/meta/original/4X/a/e/9/ae925d0e4698fe87cf5851acfcb8cab910c10bcc.png)

I think that it is meant to be placed several pixels higher to get it out of the way like this:

 ![image](https://global.discourse-cdn.com/meta/original/4X/d/a/d/dadc3b63ce3c6d070b05cce0d5a46b2f370ddece.png)

Unfortunately, this also obscures the options that the user selects, making signup via mobile a very awkward experience when you have several user-custom-fields.

This is the same with all themes/components turned off.

Here is a CSS patch which has got me through:

```plaintext
// temporary fix of dropdown and multiselect labes
.create-account #login-form .input-group .user-field.dropdown label.control-label.alt-placeholder {
    top:-8px!important;
}
.create-account #login-form .input-group .user-field.multiselect label.control-label.alt-placeholder {
    top:-8px!important;
}

```
