Change color of product's "NEW" icon				
							
			
	
		
		
		
			
			
	
	- 
		
			
				
	
	
		
			
			Is it possible to change color of the icon “NEW”? My clients doesn’t want it to be green.
Attachments:
You must be 
logged in to view attached files.
 
					
			
			
		 
	 
 
			
				
	
	
		
			
			Hello, 
Please add this code to the Theme Settings > Custom CSS > Global:
/*new*/
body .labels-rectangular .new{
color:#ffffff;
background-color:#000000;
font-size:12px;
}
You can change the label as per your needs, if your label is round, 
use this code: 
/*new*/
body .labels-rounded .new{
color:#ffffff;
background-color:#000000;
font-size:12px;
}
Best Regards