Works like a dream. Thank you. I have done three lines of code;The success page looks OK with the right column in place.Code:#checkoutpaymentBody .rightBoxContainer {display: none;} #checkoutshippingBody .rightBoxContainer {display: none;} #checkoutconfirmationBody .rightBoxContainer {display: none;}
Thank you again
Learning Fast.
Eden Craft Supplies
Could also split that out into different files to be loaded on the applicable page(s) instead of always loading that css on every page:
If you create a file in includes/templates/YOUR_TEMPLATE/css
named:
checkout_payment.css
checkout_shipping.css
checkout_confirmation.css
With the applicable css to apply when just that page is shown.
So in checkout_payment.css could have the above:
#checkoutpaymentBody .rightBoxContainer {display: none;}
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Very good point. I will do it that way, as you said to stop it from being loaded very time. This may help cut down the stylesheet size if I look at other pages that only use one time ccs code.
Thanks for the help
Learning Fast.
Eden Craft Supplies