
Originally Posted by
lat9
@BillJ, thanks for that. While the inclusion of the "Shipping, same as billing" checkbox is as expected (I do need to update that demo site), the inclusion of the blocks other than the shopping-cart (i.e. current products) list should not be displayed until the addresses have been validated. I'll open an issue on the OPC GitHub repository to track the change(s) required.
Found it! That was an overly-aggressive change for this issue. Edit your template's version of checkout_one.css, changing the line that reads
Code:
.opc-overlay .active { background: #dcdcdc; height: 100%; width: 100%; opacity: 0.5; top: 0; left: 0; position: absolute; padding: 0; z-index: 1; }
to
Code:
.opc-overlay.active { background: #dcdcdc; height: 100%; width: 100%; opacity: 0.5; top: 0; left: 0; position: absolute; padding: 0; z-index: 1; }
... removing that intervening space between .opc-overlay and .active.
Bookmarks