开发者

Styling bug that switched form field orders

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;
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜