greencode
Member
Posted 10 months ago #
Rather annoyingly whenever an image is placed in my blog it places a grey border around it, which looks great for the majority of images. But, it's also decided to place the same padding and grey border around the addthis button.
Is there any way I can style the addthis button to include a border and padding tag, both to be zero?
Does the addthis button have any CSS tags? If it does you can fix it with
.addthistag { padding:0; border:none; }
greencode
Member
Posted 10 months ago #
Thanks for this - I've managed to do it by including an inline style of:
style=\"padding:0; border:none;\"
I had to include the back-slashes as it was in the coding of the button (to be honest I've no idea why you have back-slashes but this seemed to work nevertheless)
Thanks again.