Click to See Complete Forum and Search --> : IE problems


Naruto
08-09-2008, 05:25 AM
hey all,
I'm working on a website, and i'm using the functions showdiv and hidediv to show and hide some contents ... I wanted the contents to fade in while appearing so i used another fade in function. It worked perfectly on Safari, but when i tried it on IE, it works normally on some of the divs, and the others just don't appear although they all have the same css. Any idea whats wrong ?

Thanks.

konithomimo
08-09-2008, 03:36 PM
Different browsers support different CSS properties, and different browsers also handle CSS differently. Usually when a browser handles a script or styling as desired for one object, but not for another, the problem lies in

1) naming convention - naming multiple objects the same
2) parent/sibling object(s) properties - one or more css value(s) of the parent object is affecting the css of the child object. Such as the cumulative widths being too large for the display area.

There are other factors that can cause this issue, but without seeing your code we cannot really help.