diff options
author | Scott González <scott.gonzalez@gmail.com> | 2012-06-15 13:28:48 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-06-15 13:28:48 -0400 |
commit | 754ff38ef5648c94c446d99933c824ef0f59ae4d (patch) | |
tree | 47ad543e9a87fa817ac313f7a6f48c357d57e459 /demos/droppable | |
parent | 92fb5567a25080f2064710fc24f0c6c073424cf3 (diff) | |
download | jquery-ui-754ff38ef5648c94c446d99933c824ef0f59ae4d.tar.gz jquery-ui-754ff38ef5648c94c446d99933c824ef0f59ae4d.zip |
Droppable demo: Fixed styling.
Diffstat (limited to 'demos/droppable')
-rw-r--r-- | demos/droppable/shopping-cart.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/demos/droppable/shopping-cart.html b/demos/droppable/shopping-cart.html index 8a08f576b..f3a881fc4 100644 --- a/demos/droppable/shopping-cart.html +++ b/demos/droppable/shopping-cart.html @@ -16,7 +16,7 @@ <style> h1 { padding: .2em; margin: 0; } #products { float:left; width: 500px; margin-right: 2em; } - #cart { width: 200px; float: left; } + #cart { width: 200px; float: left; margin-top: 1em; } /* style the list to maximize the droppable hitarea */ #cart ol { margin: 0; padding: 1em 0 1em 3em; } </style> @@ -49,11 +49,11 @@ <body> <div class="demo"> - + <div id="products"> - <h1 class="ui-widget-header">Products</h1> + <h1 class="ui-widget-header">Products</h1> <div id="catalog"> - <h3><a href="#">T-Shirts</a></h3> + <h2><a href="#">T-Shirts</a></h2> <div> <ul> <li>Lolcat Shirt</li> @@ -61,7 +61,7 @@ <li>Buckit Shirt</li> </ul> </div> - <h3><a href="#">Bags</a></h3> + <h2><a href="#">Bags</a></h2> <div> <ul> <li>Zebra Striped</li> @@ -69,7 +69,7 @@ <li>Alligator Leather</li> </ul> </div> - <h3><a href="#">Gadgets</a></h3> + <h2><a href="#">Gadgets</a></h2> <div> <ul> <li>iPhone</li> |