Hello, can you please create an update with the possibility to customize the size of the icons?
32px for my blog is too little
64px is too big :/
I would like to try different values and choose the best one that fits my sidebar.
It would be an excellent enhancement :)
Please let me know
thank you
Not without scaling images, which is something I try to avoid.
You can always use CSS to scale them.
is it something simple?
What should I add in the css? for example to have 40px x 40px?
What I would do is select the 64x64 icons and add the following to your style.css:
.socialmedia-buttons img {
width: 40px;
height: 40px;
}
Always better to scale down than to scale up.
Excellent!! It works, thank you.
Resolved