Just went through awesome survey of software developers done by Stackoverflow for year 2015. Pakistan was missing on the webpage but data was available to review in CSV format. From that CSV file I am going to share Pakistan software developers stats here. Wherever it would be possible I will compare Pakistan’s stats with India’s Continue reading
General
Addthis – Bigger Social Icons
Recently I was asked to make bigger social icons for Addthis widget. Addthis provides maxiumum of 32×32 size of social icons(ref). You can add your bigger images instead, by using following code.
1 2 3 4 5 6 7 |
<div class="addthis_toolbox addthis_default_style addthis_32x32_style addthis_margin"> <a class="addthis_button_facebook"><img src="/assets/img/fb_logo.png" id="fb_share" class="social_buttons" alt="Share On Facebook"/></a> <a class="addthis_button_twitter"><img src="/assets/img/twitter_logo.png" class="social_buttons" alt="Share On Twitter"/></a> <a class="addthis_button_linkedin"><img src="/assets/img/linkedin_logo.png" class="social_buttons" alt="Share On Twitter"/></a> <a class="addthis_button_pinterest_share"><img src="/assets/img/pinterest_logo.png" class="social_buttons" alt="Share On Twitter"/></a> <a class="addthis_button_google_plusone_share"><img src="/assets/img/google_plus_logo.png" class="social_buttons" alt="Share On Twitter"/></a> </div> |
So, basically I have added <img> tags between the anchor <a> tags in above code. Please set the image “src” Continue reading