Variations of Performance in IE7

cybl00 - May 29, 2009 - 15:12
Project:AddThis Button
Version:6.x-2.7
Component:Miscellaneous
Category:bug report
Priority:normal
Assigned:wesku
Status:needs review
Description

I'm not getting a "steady behavior" from AddThis in IE7.

1.) The AddThis dropdown box does not appear at all on any pages
2a.) The AddThis dropdown box appears but has no styling (see screenshot)
2b.) While on some pages the box is unstyled, it works perfectly on other pages.

Thanks.

AttachmentSize
screenshot_addthis_messup.gif10.38 KB

#1

cybl00 - May 29, 2009 - 15:49

Sorry, please disregard the first problem.

It's only 2a and 2b.

Thanks.

#2

wesku - June 1, 2009 - 12:12
Assigned to:Anonymous» wesku
Status:active» postponed (maintainer needs more info)

Please check your css files and make sure that there are no conflicts. Also try to disable CSS aggregation and empty all caches. See if one of those helps first.

#3

cybl00 - June 1, 2009 - 16:44

Clearing the cache didn't solve the problem and I checked the style and there wasn't a problem there.

I already had the CSS aggregation disabled but I misread your suggestion and instead enabled it. After enabling the aggregation, the drop-down box worked but when I disabled it again, ('cause I'm still in quasi-theme development) it didn't work again. Is there a reason for this?

Thanks for your help!

#4

wesku - June 2, 2009 - 13:08

Does it work with other browsers? I'm really bad at helping in any IE-problems since I haven't been using IE for 5 years and don't even have it on any machine... Theming and CSS is really not my cup of tee.

Anyone else out there having soled same kind of problems?

#5

cybl00 - June 2, 2009 - 18:20

Here are the browsers I was able to test and the results. I'll be able to test more later when the site is not locally run, if needed.

Worked Fine in...
Firefox (3.0.1[windows] and 1.5.09[linux])
Safari (3.0.3[windows])

Doesn't Work in...
IE7 --> Only on homepage, works every else in site

The widget pulls in an external CSS file --> http://s7.addthis.com/static/r07/widget00.css -- maybe within lies the problem. I'll keep looking into it.

#6

dwyszyns - June 22, 2009 - 17:32

I had the same problem, only it was worse. It was screwing up the whole page CSS in my forum nodes, where no styles were applied to the page. It turns out there's an IE bug where it can only load so many CSS files. Here's the link to the explanation (from an Ubercart support page, though I dont use it).

http://www.ubercart.org/forum/support/7461/enabling_product_and_order_mo...

The fix was to turn CSS aggregation ON, which worked like a charm for me.

Good luck.

-Dan

#7

Apollo610 - June 25, 2009 - 19:26

Just a quick FYI - there's a module that allows you to load unlimited CSS for IE, which should help for themers running into this problem but don't want aggregation on.

http://drupal.org/project/unlimited_css

#8

cybl00 - June 29, 2009 - 16:15

I've figured out that my problem stems from some kind of conflict between quicktabs and AddThis. I'm thinking it's a problem on our end with the styling and nothing to do with either module.

#9

Mr P - July 15, 2009 - 15:16

Same prob in ie8. CSS aggregation ON worked. silly ie.

#10

noomz - October 14, 2009 - 08:56
Status:postponed (maintainer needs more info)» needs review

I used this code to fix style with IE, tested on IE6-8. addthis.module.patch is attached

<?php
 
// Fix IE's bug.
 
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE) {
   
drupal_add_link(array(
     
'rel' => 'stylesheet',
     
'type' => 'text/css',
     
'href' => "http://s7.addthis.com/static/r07/widget02.css",
    ));
  }
?>

AttachmentSize
addthis.module.patch 606 bytes

#11

wesku - October 22, 2009 - 17:59

This has now been committed to latest dev release of D6 version. Please test this and let me know if it fixes the issue.

 
 

Drupal is a registered trademark of Dries Buytaert.