Skip Navigation

[Resolved] styling built-in login form

This support ticket is created 7 years, 3 months ago. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Our next available supporter will start replying to tickets in about 1.91 hours from now. Thank you for your understanding.

Sun Mon Tue Wed Thu Fri Sat
- 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 9:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Hong_Kong (GMT+08:00)

This topic contains 5 replies, has 2 voices.

Last updated by Jeffrey 7 years, 2 months ago.

Assisted by: Luo Yang.

Author
Posts
#564898
QQ图片20170829135407.png
QQ图片20170829135302.png

Hello, I would like to stye built-in login form form inline to group form. I am now using toolset starter, and no loading theme CSS, because I want to override CSS instead of origin. everything I did ok, except the built-in login, forget password and reset password form. I want to change inline form to group form such toolset default form styling. I know it just need to adjust class form " inline form" to "group form". could you please tell me where and how to? Thank you so much!

#564963

Dear Jeffrey,

Are we talking about the login form output in your website/wp-login.php?
If it is, it is wordpress built-in login form, you will need to follow wordpress document to style it:
https://codex.wordpress.org/Customizing_the_Login_Form

For your reference.

#565030

我的意思是,我使用Toolset starter 并且没有加载它的 css, 所以login form 非常难看,——标签和输入框在一行,我想要修改成 标签名称 在上,输入框在下面的那种形式, 我知道只要把他的 class 从 inline 才成 form group 就行了。可是不知道应该修改哪一个文件因为 style.css是做不到的 谢谢!

#565059

因为这是CSS 代码问题,你可以提供一个网站供我测试吗?请填写下面的“private detail box ”, 并指出问题页面地址,我需要使用Chrome浏览器测试和DEBUG。谢谢!

#565458

你可以在你的主题文件style.css里面加入以下代码:

#user_login, #user_pass{
display:block;
}

看结果页面:
hidden link

#567459

Thank you so much, it works well now! 🙂