Hi. I'm looking for a way to show different icon sizes depending on what platform my users is on. I'm using responsive web design, so the same website shows up differently based on what platform users are on.
I have the following hardcoded on my page:
<div class="addthis_toolbox addthis_default_style">
Is there a way to call the following part via css for mobiles users:
addthis_32x32_style
so that the default becomes
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
when a mobile phone is used to access my site?
Thanks for your time.
Ex: user is on mobile, I would love to show big icons, but use
There's no way to do that inside of AddThis, but you could detect the user agent in the request and add the class using your server-side code
This question is closed to new answers.