Hi, On page load my promo banner slips 3/4 down to the bottom right corner but would seem only in Internet Explorer.. Does anybody else have the same issue? Any sugegstions on how to fix it or how to put a simple rotator code in to display my 6 jpg banner?
Regards, Ken |
Looks liek nobody else is experiencing this issue? here is an example: www.fishingbuddynetwork.com.au if you load the page in IE you will see what I mean.. |
Does the same thing happen with original photos rotating? I will try and look at it soon as I'm on an iPad right now... |
Open file inc/js/jquery.dolPromo.js
Find:
$Img.css( { width: 'auto', height: 'auto', left: 0, top: 0 } );
Change to:
$Img.css( { width: '940', height: '264', left: 0, top: 0 } );
(For default 960px page with)
Life is a fatal disease, sexually transmissible - Virginity is carcinogenic! Ask here for vaccine. |
Sometimes it happens to me too |
Hi, MichelSwiss
My file do not have that line in it, this is the equivalent I think? I am running Dolphin 7 initial release.. I have not upgraded..
$img.css({ position: 'absolute', left: Math.round( ($img.parent().width() / 2) - ($img.width() / 2)), top: Math.round( ($img.parent().height() / 2) - ($img.height() / 2)) });
|
Hi,
Got the solution from MichelSwiss in case others have same issue!!!
Save a copy of your file, then try to replace
$img.css({ position: 'absolute', left: Math.round( ($img.parent().width() / 2) - ($img.width() / 2)), top: Math.round( ($img.parent().height() / 2) - ($img.height() / 2)) });
with
$img.css({ position: 'absolute', width: '940', height: '264', left: 0, top: 0 });
! Obviously change the Width and height to match your banners!! |
Open file inc/js/jquery.dolPromo.js
Find:
$Img.css( { width: 'auto', height: 'auto', left: 0, top: 0 } );
Change to:
$Img.css( { width: '940', height: '264', left: 0, top: 0 } );
(For default 960px page with)
Sorry... I think that this code is for Dolphin 6.1 :-(
Life is a fatal disease, sexually transmissible - Virginity is carcinogenic! Ask here for vaccine. |
I tried this for the new 7.0.4 version. Did not work. Any other suggestions on how to fix this? |
I have the same error with the promo images..... |
You must delete the cache when you done this correction. |