PeaNuts 0 Posted December 19, 2020 Share Posted December 19, 2020 Hello, I am trying to change background border colour from white to purple, attached something like this, have looked at the foundation css, not sure which line to edit, can any body help. Quote Link to post Share on other sites
bsmither 1,481 Posted December 19, 2020 Share Posted December 19, 2020 We suggest that changes to the styling be made in the file cubecart.default.css. This file is initially blank, it gets loaded last, thus any rules here overrule any previous rule. (Keep a copy of this file if edited, as it does get replaced on an upgrade.) Add this rule: body { background-color: purple; } But that covers the whole page. The Foundation system uses rows and 12 columns in each row (can be nested). Everything is in a row. So, we can apply a color to the row class to get back the white background. Add this rule: .row {background-color: white } Have CubeCart clear its internal cache (admin, Maintenance, Rebuild tab). Quote Link to post Share on other sites
PeaNuts 0 Posted December 21, 2020 Author Share Posted December 21, 2020 Hi PeaNuts here, cannot find cubecart default css, please help, if found would I just add. body { background-color: purple; } .row {background-color: white } could a wallpaper image be supported. Cheers found it ! possibly? skins/foundation/css/ cubecart.css Quote Link to post Share on other sites
bsmither 1,481 Posted December 21, 2020 Share Posted December 21, 2020 the file cubecart.default.css is in the Foundation skin's /css/ folder. A background-image will work. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.