![]() |
Any jQuery Experts?
I'm working on this page at http://www.brianabanksreloaded.com/slide.html which works the way I want it to on Fire Fox, but works like shit on IE.
I really love the effects and would love to expand on it, any ideas what I'm missing? |
I'm using CSS and html validators, I can't find it, I posted on a jquery forum, but that could be a while, I need this to wrk by monday, well atleast I hope
|
you need a IE6 png transparency fix.
try to solve it with superslight |
Quote:
|
try using position: absolute on overlay helpers, instead of position: fixed.
|
Here's the css, the position is already absolute
Code:
div.overlay {Code:
<html> |
the absolute position is for the close box icon... you need to change it for the whole overlay.
try something like: inside onLoad: before (but inside the function): this.getOverlay().find("a.player").flowplayer(0).l oad(); put this: this.getOverlay().css("position", "absolute"). That would force the overlay to have absolute position once fired up. |
Quote:
Code:
<html> |
this.getOverlay().css("position", "absolute").
you don't need "." - that's syntax error. Instead use: ";" do the same for the two image helpers. This: $(function() { $("#triggers img[rel]").overlay({effect: 'apple'}); }); replace with: $(function() { $("#triggers img[rel]").overlay({ effect: 'apple', onLoad: function(content) { this.getOverlay().css("position", "absolute"); } }); }); Hope it helps.... |
use IE and look at http://brianabanksreloaded.com/slide.html Getting closer
it corrects itself from loading to the left to center Still working good in FF This is going to look very cool when I use this with the design |
just add:
fixed: false, (let comma be there this time) before effect: 'apple' |
what slider are you using? or just your own jquery code?
|
fris, this is jQuery Tools Overlay 'plugin'...
|
http://stackoverflow.com/ is your friend
|
Quote:
|
Quote:
ding ding ding I think we have a winner, thank you for your help, this is going to work slick when I get it into the design Quote:
|
Quote:
|
Bump to help you get the info you need
|
Quote:
I really like jQuery, going to have to learn more of it, looks cool on a webpage |
| All times are GMT -7. The time now is 04:50 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123