Home Forums WoodMart support forum Share button size

Share button size

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #633951

    MatoZato
    Participant

    Hello.

    Please how can i set Share text and share facebook button size?

    https://821.sk/produkt/dym/

    Thank you very much.

    #634134

    Hello,

    To change the size of social share buttons from the product page you can use the below css in Theme Setting > CUSTOM CSS > Global Custom CSS:

    .single-product .wd-social-icons.wd-style-default>a {
        font-size: 30px;
    }
    span.wd-label.share-title  {
         font-size: 30px;
    }

    Best Regards

    #634148

    MatoZato
    Participant

    Thank you very much. Its work.

    And please, how can i change Facebook icon?

    Thank you very much.

    #634244

    Hello,

    Try to add the below css in Theme Setting > CUSTOM CSS > Global Custom CSS:

    .wd-social-icons .social-facebook .wd-icon:before {
          content: "" !important;
        background-image: url('https://via.placeholder.com/150');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 50px; /* Adjust size as needed */
        height: 50px; /* Adjust size as needed */
        display: inline-block;
    }

    Please change the image URL. You can upload your desired image to the media library in WordPress and copy the link to replace the dummy URL.

    Best Regards

    #634276

    MatoZato
    Participant

    Thank you very much its work 🙂

    And please, how i set margin right. Move Icon to right.

    Thank you very much 🙂

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