Forum Moderators: not2easy

Message Too Old, No Replies

Firefox problem

divs don't align properly

         

rhollj

3:26 am on Jan 27, 2010 (gmt 0)

10+ Year Member



I have a site, <snip>, done in joomla 1.5.13. I created the template with Artisteer 2.3. I have successfully put in a GCalendar component and it works.... except for one thing.

When I click on an event to see the event details in IE, it positions it fine, at the top of that section of the page. When I click an event in Firefox, it pushes my left column all the way to the right and dropped by event details to the bottom of the page. Weird! You can view the problem at <snip>. Click on General Information ... Calendar. Click on any event in both IE and Firefox and you will see the difference.

I worked with the creator of GCalendar and he said the CSS was beyond him. I am hoping a CSS guru has seen this problem before.

No URL's please, see TOS [webmasterworld.com]

[edited by: limbo at 11:07 am (utc) on Jan. 27, 2010]

merijnvw

3:42 pm on Jan 30, 2010 (gmt 0)

10+ Year Member



I can't see your site(because url's are not allowed) and I don't really understand your explanation. But in JavaScript you can check whether the visitor is using IE or any other browser by:

<script language="Javascript">
var browsertest = (document.all) ? 1 : 0;
if( browsertest > 0)
{this is executed in IE only}
else{this is executed in all other browsers}
</script>