Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
css, Js, strange bug (fix it if you can contest)
Okay, its not really a contest, but you’re here aren’t you, so it worked right! wait. don’t go, there really is a bug.
If you are using IE 6. Please take a look at this
the bottom left image hangs up above its container until it is moused over, and then it stays put? What the?!%@#
I don’t get it.
I suppose it could be the js I use, but none of the others do it, and despite my genious (yeah right) I couldn’t find the error.
Anybody have any ideas?
Matthew
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#2 2006-04-10 12:59:20
- alexandra
- Member
- From: Cologne, Germany
- Registered: 2004-04-02
- Posts: 1,370
Re: css, Js, strange bug (fix it if you can contest)
I just looked at it through IE6 and i can not see anything beeing wrong with your site. honestly everythink looks fine here – in germany. if you do not believe me i send you a screenshot :)
Offline
#3 2006-04-10 13:44:49
- marios
- Archived Plugin Author
- Registered: 2005-03-12
- Posts: 1,253
Re: css, Js, strange bug (fix it if you can contest)
not been able to see the bug yet, but what I can see from yor page source is , that you use marys image popper plugin,
you have two jave script references in hour header element.
try to remove the image popper tag and disable the plugin, does that change anything ?
regards, marios
⌃ ⇧ < ⎋ ⌃ ⇧ >
Offline
Re: css, Js, strange bug (fix it if you can contest)
Maybe I innadvertantly fixed it already :)
I guess it could have been a cache issue.
Would two opposing CSS declerations cause this kind of bug?
Seems kinda weird. I had deleted a contradictory div.web statement in the style sheet last week.
Hmm.
Thanks for your quick responses.
And Alex, you are a really suspicious person, and so the offer for a screenshot was good, but this ONCE, I will believe you :)
(great interview with Neil by the way :)
Cheers all,
No news is good news,
Matthew
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#5 2006-04-10 13:56:47
- alexandra
- Member
- From: Cologne, Germany
- Registered: 2004-04-02
- Posts: 1,370
Re: css, Js, strange bug (fix it if you can contest)
And Alex, you are a really suspicious person…
:))) (i know)
btw. here is a nice soul song for the both of you crazy probably you know it already
Offline
Re: css, Js, strange bug (fix it if you can contest)
Seeing no problems here either. IE cacheing can drive you pretty crazy, as sometimes it refuses to go fetch stuff.
I am however getting a JS error in your inner pages, coming from hover.js because you don’t have a #column-wrap div in them.
Changing
bc..
window.onload = function setupStuff(){
d = document.getElementById(“column-wrap”);
y = d.getElementsByTagName(“A”);
for(x=0; x < y.length; x++)
{
y[x].onmouseover = ieImgHide;
y[x].onmouseout = ieImgShow;
}
}
to
bc..
window.onload = function setupStuff()
{
d = document.getElementById(“column-wrap”);
if (d)
{
y = d.getElementsByTagName(“A”);
for(x=0; x < y.length; x++)
{
y[x].onmouseover = ieImgHide;
y[x].onmouseout = ieImgShow;
}
}
}
I think should take care of it. Love the new design.
Last edited by hakjoon (2006-04-10 14:11:41)
Shoving is the answer – pusher robot
Offline
Re: css, Js, strange bug (fix it if you can contest)
Hak,
I will make that change. Thanks for pointing it out.
Thanks for the props on the design. I am enjoying it too. :)
I just added a feature to download my latest sketch. (http://artiswork.org/sketchbook/night_tree
Alex,
Holy crap. That’s some of the best fun music I’ve listened to in awhile : THANKS!
M
- I am Squared Eye and I
am launchinghave launched Pattern Tap
Offline
#8 2006-04-10 14:24:08
- alexandra
- Member
- From: Cologne, Germany
- Registered: 2004-04-02
- Posts: 1,370
Re: css, Js, strange bug (fix it if you can contest)
@ma – yeah is a great song isn´t it. No1 in Uk …
Please read my T-Shirt contest announcement – i expect the best from hakjoon and you ;)
have a nice day ..
Offline