Is there a way to modify the layout of the signup page? More precisely, I would need to make the left column a good bit wider to make space for some custom field labels:
Edit the CSS in Admin, Customize as needed
This CSS mod seems to work:
.create-account .user-field label {
width: 190px
}
.create-account .user-field .controls {
margin-left: 200px
}
Mobile is a bit more tricky but at least on High Resolution screens, this seems to work without adjusting the width of the actual field/combobox:
.create-account .user-field label {
width: 140px
}
.create-account .user-field .controls {
margin-left: 140px
}
こんにちは、@tophee さん。
フィールドのタイトルを最初の列に、短いフィールドと説明を2番目の列に配置する方法について教えていただけますか?
私のサイトでは現在、以下のように表示されています:
これでは不要なスペースを占めてしまい、広いフィールドの見た目もあまり良くありません。
display: flex を試してみましたが、うまくいかず、私の CSS のスキルはまだ初級レベルです。ご協力いただければ幸いです。
申し訳ありませんが、これは数年前に行ったもので、ここにあるドキュメント以外の記憶はありません。
確実ではありませんが、私のスクリーンショットとあなたのスクリーンショットの違いについて、以下の3つの可能性が考えられます。
- 2017 年以降にデフォルトの CSS が変更された
- カスタムユーザーフィールドを使用している場合(当時私がそうだったように)、レイアウトが異なる
- 変更したが、その事実や方法を覚えていない
あなただけではありません ![]()


