Genadinik
Genadinik

Reputation: 18639

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

Upvotes: 0

Views: 30

Answers (1)

mylesagray
mylesagray

Reputation: 8869

label span has been floated right in your CSS:

label span {
  float: right;
  width: 15em;
}

Change it to:

label span {
  float: left;
  width: 15em;
}

Upvotes: 2

Related Questions