datasi Posted November 9, 2015 Share Posted November 9, 2015 Hello! i've managed to change the color of the footer with editing the module "themeconfigurator" file. But are unable to find a way to change the color of the bar above it which still is grey and i need to change the color of it. As you can see the footer is pink/purple but the newsletter bar above is still grey. So would appreciate if someone could tell me where i could change the color of that one! -datasi Link to comment Share on other sites More sharing options...
Paulito Posted November 9, 2015 Share Posted November 9, 2015 Hello You are trying to change the colour of an image, which you cannot do, so, Around line 7227 of global.css you will see this code: .footer-container { background-color: #333; } @media (min-width: 768px) { .footer-container { background: url(../img/footer-bg.png) repeat-x #333; } } .footer-container .container { padding-bottom: 100px; } .footer-container #footer { A bit of a cheat but, just /* Comment Out */ this code and then change the colour from #333; to whatever you want For example: .footer-container { background-color: #333; } @media (min-width: 768px) { .footer-container { background: /*url(../img/footer-bg.png) repeat-x*/ #FFA500; } } .footer-container .container { padding-bottom: 100px; } .footer-container #footer { Result http://screencast.com/t/XMlbXq2oEJyi Paul Link to comment Share on other sites More sharing options...
datasi Posted November 11, 2015 Author Share Posted November 11, 2015 It worked really well! Thanks for the help. Appreciate your help! Link to comment Share on other sites More sharing options...
martita Posted January 17, 2016 Share Posted January 17, 2016 Hi, I'm also trying to change the color of the background. I'm currently setting up my prestashop online, which means that I don't have any files in my pc. How can I access the css file, change and save the new color? Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now