Ok, so I have several sections to a webpage that I am making.
There’s a fieldset at the top, and then beneath that I have two forms, one standard, on the left, and another form that I am trying to make go on the right.
Underneath that, there SHOULD be a table.
Instead, when I put a div around the second form and give it the float: right property, the second form goes to the right of the table.
How do I keep it on the right side of the screen, but ABOVE the table in question?
Wrap both forms into a DIV, and then have each form in its own div. Then, have the form you want to float right be ABOVE the other in the markup.
Basically, an element floats to the right of the element that it preceds.