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,
我想知道,你是如何让字段标题位于第一列,而简短字段和描述位于第二列的?
在我的网站上,目前看起来是这样的:
这占据了不必要的空间,而且宽字段看起来不太美观。
我尝试过使用
display: flex,但未能取得任何效果,目前我的 CSS 技能还比较基础。任何帮助都将不胜感激。
抱歉,这是我多年前做的,除了这里记录的内容外,我完全不记得当时是怎么做的。
我不太确定,但能想到我的截图和您的截图存在差异的三个原因:
- 自 2017 年以来,默认 CSS 已更改。
- 如果您使用了自定义用户字段(就像我当时做的那样),布局会有所不同。
- 我可能修改过,但已经不记得是否做过以及是如何做的。
你并不孤单 ![]()


