Jump to content

Item refresh causing jumping in Mozilla


Guest

Recommended Posts

Okay this is one of those strange IE verses Netscape/Firefox things (not 100% sure it's doing it in firefox since it won't reinstall on this computer but it is in netscape).

Look at www.mysticconvergence.com and you will see a "Chat with Us" button in the top right. All is fine in IE, but in Netscape (and I'm assuming Firefox), every time the button refreshes (which it does every few seconds as its a dynamic button), the whole page jumps! Really annoying!

I've tried everything I can think of - setting a height for the div solved the problem in IE, but nothing I try seems to help it in Netscape and it's driving me nuts! Any suggestions?

The current code for it is:

<div align="right" height="58" style="positive:absolute;"><!-- C4S -->

<script src="http://web.chat4support.com/Weboperator/Operator/banner.aspx?sid=xxxx&sTag=

(username)&style=1&online=1&nFloat=0&nInvite=2&nMode=0"></script>

<!-- C4S --></div>

Link to comment
Share on other sites

Could you not try creating a complete container in layout.css

.helpboxcontainer {

height: 60px;

width: 102px;

background-color: red;

}

.helpbox {

height: 58px;

width: 100px;

background-color: lime; (I always do this for testing, then remove later)

}

Then in your index.tpl put the class:

<div class="helpboxcontainer">

<div class="helpbox">

xxxxxxxxxxxxx your code here xxxxxxxxxxxxxx

</div>

</div>

hopefully the refresh will go on inside a permenant container and therefore shouldnt effect the rest of the site.

Never tried it myself but maybe worth a try !!!!

Let me know if it works , id be interested to know !!

Link to comment
Share on other sites

Nope. Didn't help :on2long: Still jumps in Netscape. :)

Actually change that - I had to make it:

.helpboxcontainer {

position:relative;

top:10px;

left:650px;

height: 60px;

width: 119px;

}

and now it's working! Thanks again!

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...