Reputation: 2634
I believe this is just a css adjustment but I'm not sure. I want my submit button (apply changes) button on the left and cancel button on the right. Currently it is opposite.
This fiddle from a previous problem illustrates the issue (click the Edit button): http://jsfiddle.net/ThinkingStiff/jdKxd/
Upvotes: 0
Views: 140
Reputation: 150070
Given that you're creating the buttons dynamically can't you just create them in the opposite order, i.e., create the Cancel button before the Apply button? You've got them styled to float:right
, so that should work.
(Or is the question about how to fix it purely with CSS?)
Upvotes: 1