- This topic has 6 replies, 2 voices, and was last updated 10 years, 7 months ago by .
Viewing 7 posts - 1 through 7 (of 7 total)
Viewing 7 posts - 1 through 7 (of 7 total)
- You must be logged in to reply to this topic.
WordPress Membership Plugin
Simple Membership Plugin › Forums › Simple Membership Plugin › Change input field height
I’d like to change the height and font for the input text fields in the Login form – they are a little small.
Any suggestions please?
Hi can you share your URL?
Thank you
Apologies – hadn’t seen your reply. This is the link to the url
I have tried the following css .swpm-login-widget-form .swpm-text-field { height: 2em; } but cannot increase the height of the input field.
Thank you
Hi try added the following code. You can see I added height: 50px;. You can add what ever height you want.
input[type="text"], input.text, input.title, textarea, select {
height: 50px;
margin: 0;
}
Apologies mbr for not quite understanding. I understand how to do this if I was writing the actual html code but cannot get this to work changing any CSS. Are you implying I can alter the html for the form? If so where please. Thanks
Hi, sorry for not clarifying my solution. What you need to do is add the above CSS code to your theme if it allows custom code to be added or use a plugin that allows you to add custom code. The code itself will create the customization you require.
Thanks Mbr – I was putting the css code in the wrong place – now it works. Thanks again