Jump to content

remove red on sale discount box


Recommended Posts

Find this code probably in global.css:

#reduction_percent, #reduction_amount {
    background:  #f13340;
    border: 1px solid #d02a2c;
    color: white;
    font-family: "Open Sans",sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 23px;
    margin-right: 10px;
    padding: 1px 2px;
}

and add this to it:

display:none;
Link to comment
Share on other sites

got it fixed 

#reduction_percent,
#reduction_amount {
  display: none;
  margin-right: 10px;
  padding: 1px 2px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  line-height: 23px;
  color: white;
  background: #f13340;
  border: 1px solid #d02a2c; }

changed display: inline block to display: none

found in product.css

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...