Jump to content

Sale-label background color


Recommended Posts

Hi,

 

this is my first new post here, sorry for my bad english.

 

I have Pretashop 1.6 and since I changed colors of the frontpage with the customization tool, the background color of my sale-label have the same color of the theme.

 

Is it possible to give a diferent color (for example RED) to the background?

 

See picture (background of EM SALDO)

post-758103-0-81832100-1396798554_thumb.jpg

Thanks in advance for your help.

 

Carlos

Link to comment
Share on other sites

I guess you changed theme to light blue theme which is theme8.

 

To change sale label to different color open file yourtheme/modules/themeconfigurator/css/theme8.css and find this code:

.new-label, .sale-label {
    background: none repeat scroll 0 0 #43BEBD;
}

and make two styles from it like this:

.new-label {
    background: none repeat scroll 0 0 #43BEBD;
}

.sale-label {
    background: none repeat scroll 0 0 #F13340; //Put desired sale color here
}

Do the same for this code:

.new-label:before, .new-label:after, .sale-label:before, .sale-label:after {
    border-color: #43BEBD rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
  • Like 2
Link to comment
Share on other sites

  • 1 month later...
  • 8 months later...
×
×
  • Create New...