I have had the same login form and create_profile form for a long time. Yesterday some style changes were made on the site and today to my amazement, these two forms have fields reversed.
Here is the example of what I am talking about: http:开发者_如何转开发//www.hikingsanfrancisco.com/create_profile.php
I am not very knowledgeable in CSS issues, and I have never seen something like this. Any idea what may be causing this?
Thanks, Alex
label span
has been floated right in your CSS:
label span {
float: right;
width: 15em;
}
Change it to:
label span {
float: left;
width: 15em;
}
精彩评论