Home / Forums / WoodMart support forum / Share button size
Home › Forums › WoodMart support forum › Share button size
Share button size
- This topic has 7 replies, 2 voices, and was last updated 1 year, 5 months ago by
Aizaz Imtiaz Awan.
-
AuthorPosts
-
January 29, 2025 at 9:15 pm #633951

MatoZatoParticipantHello.
Please how can i set Share text and share facebook button size?
Thank you very much.
January 30, 2025 at 2:16 pm #634134Hello,
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
January 30, 2025 at 2:57 pm #634148
MatoZatoParticipantThank you very much. Its work.
And please, how can i change Facebook icon?
Thank you very much.
January 30, 2025 at 6:22 pm #634244Hello,
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
January 30, 2025 at 8:08 pm #634276
MatoZatoParticipantThank you very much its work 🙂
And please, how i set margin right. Move Icon to right.
Thank you very much 🙂
January 31, 2025 at 1:06 pm #634416Hello,
You’re very welcome!
To move the icon to the right, add the following line to the previous code:
margin-left: 10px !important;You can adjust the value as needed.
Best Regards
January 31, 2025 at 1:44 pm #634435
MatoZatoParticipantHello.
Please i add the margine code in previous code,
but it dont work, I must be making a mistake somewhere..wd-social-icons .social-facebook .wd-icon:before {
content: “” !important;
background-image: url(‘http://821.sk/wp-content/uploads/2025/01/Facebook.png’);
background-size: cover;
background-position: Right;
background-repeat: no-repeat;
width: 40px; /* Adjust size as needed */
height: 40px; /* Adjust size as needed */
display: inline-block;
margin-right: 20px !important;
}Thank you very much.
January 31, 2025 at 6:44 pm #634565Hello,
To move in the right please add the margin-left to the previous code:
margin-left: 20px !important;Like try to use this below code:
.wd-social-icons .social-facebook .wd-icon:before { content: “” !important; background-image: url(‘http://821.sk/wp-content/uploads/2025/01/Facebook.png’); background-size: cover; background-position: Right; background-repeat: no-repeat; width: 40px; /* Adjust size as needed */ height: 40px; /* Adjust size as needed */ display: inline-block; margin-left: 20px !important; }Best Regards
-
AuthorPosts
- You must be logged in to create new topics. Login / Register