Jump to content

Change the newsletter bar color


Recommended Posts

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.

 

nPVP2XJ.png

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

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
 
Paul
 
 
Link to comment
Share on other sites

  • 2 months later...

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...