Home Forums WoodMart support forum product hot lable

product hot lable

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #28553

    Jess
    Participant

    I would like to change hot label smaller, and change color to
    background-color: rgba(255,255,255,0.3)
    color: #ff6699;

    Attachments:
    You must be logged in to view attached files.
    #28568

    Bogdan Donovan
    Keymaster

    Hi,

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .labels-rounded .product-label.featured {
    	min-height: 35px;
    	min-width: 35px;
    	background-color: rgba(255,255,255,0.3);
    	color: #ff6699;
    }
    
    .product-image-summary .product-images .labels-rounded .product-label.featured {
    	min-height: 45px;
    	min-width: 45px;
    }

    Regards

    #28575

    Jess
    Participant

    Works! Thank you so much!

    #28586

    Jess
    Participant

    can i add an icon or image in label?

    Attachments:
    You must be logged in to view attached files.
    #28591

    Jess
    Participant

    or add Font Awesome?

    #28604

    Bogdan Donovan
    Keymaster

    Try to add the following code snippet to the Custom CSS area in Theme Settings

    .labels-rounded .product-label.featured {
    	font-size: 0;
    }
    
    .labels-rounded .product-label.featured:before {
    	content: "\f06b";
    	font-family: "fontawesome";
    	font-size: 12px;
    }
    
    .product-image-summary .product-images .labels-rounded .product-label.featured:before {
    	font-size: 16px;
    	margin-right: -2px
    }

    Regards

    #28623

    Jess
    Participant

    Perfect! Thank so so so much!

    #28645

    Artem Temos
    Keymaster

    You are welcome!

Viewing 8 posts - 1 through 8 (of 8 total)

The topic ‘product hot lable’ is closed to new replies.