Home Forums WoodMart support forum customized icons Reply To: customized icons

#318349

Hello,

You are Most Welcome.

1) Sorry but such modifications are not possible with Simple Custom CSS. It will also require Customizations that are beyond our limitations and support policy.

To move the button on mobile to avoid cutting try adding the following Custom CSS in the Custom CSS for Mobile area under Theme Settings >> Custom CSS.

.single-product .wd-action-btn.wd-style-text>a {
    margin-left: 20px;
}

2) Please try adding the following Custom CSS in the Custom CSS for Mobile area under Theme Settings >> Custom CSS.

.wd-nav-mobile .menu-item-wishlist>a:before {
    content: "";
    background-image: url(https://andersensbokhandel.com/wp-content/uploads/2021/08/heart.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
    position: absolute;
    margin-top: 0px;
    margin-left: -14px;
}

.wd-nav-mobile .menu-item-account>a:before {
    content: "";
    background-image: url(https://andersensbokhandel.com/wp-content/uploads/2021/08/hallaisiken-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
    position: absolute;
    margin-left: -18px;
}

Best Regards