Reputation: 7
I spent some time today editing a form that flashes into the screen. I changed the size of the form and did a bunch of things to make the form suit my needs.
However, when I exit the form -- on the fade "out" -- the form goes back to the wonky old setup.....which looks pretty bad. I'm looking for a way to upload my edits to the form as well as the form that fades out.
Kinda tough to explain, so here's the example:
http://www.fishingreports.com - if you click the big button "CREATE AN ACCOUNT" you will see the form I'm talking about. And if you exit the form, you'll see the ugly fade-out I'm talking about as well.
Thanks All.
Upvotes: 0
Views: 51
Reputation: 1990
You changed your CSS and added a modal.fade.in { width: 392px }
but you never changed the fading out css.
On your web.css, remove line 136 (it's a duplicate)
Change
Line 139: modal.hide.fade.in { width:392px;} -> modal.hide.fade { width:392px;}
Line 141: modal.fade.in {} -> modal.hide.fade {}
and that should fix your issue
Upvotes: 1