Closed themeblvd closed 6 years ago
Here's a good design that we can probably pull some styling changes to:
https://demo.woothemes.com/?name=galleria
(Checkout product thumbnails)
Shipping list messed up and rounded corners look bad. Completed in JS 2.2, framework 2.7
Remove all rounded corners, and here's a possible fix for the list items:
#shipping_method { list-style: none; padding-left: 0; } #shipping_method li { padding: 5px 0; } #shipping_method input { margin: 0 2px 0 0; } #shipping_method label { display: inline; }
Checkout columns shouldn't be switched Was definitely just a minor bug in the CSS, completed in JS 2.2, framework 2.7
Overriding fix:
.col2-set .col-1 { float: left; margin-left: 0; margin-right: 4%; } .col2-set .col-2 { float: right; }
Or just ditch having these as two side-by-side columns and style it like the WooCommerce themes.
Just fixing bugs here. We can implement a better implementation of WooCommerce compatibility in a future milestone, which will be easier to manager going forward (#341).
Here's a good design that we can probably pull some styling changes to:
https://demo.woothemes.com/?name=galleria
(Checkout product thumbnails)
Shipping list messed up and rounded corners look bad.Completed in JS 2.2, framework 2.7Remove all rounded corners, and here's a possible fix for the list items:
Checkout columns shouldn't be switchedWas definitely just a minor bug in the CSS, completed in JS 2.2, framework 2.7Overriding fix:
Or just ditch having these as two side-by-side columns and style it like the WooCommerce themes.