2009/10/15 6:13:44
|
---|
![]() |
Re: My new personal website & other thingsit looks like the google translate services uses an iframe as well, which causes the conflict.
you could perhaps try a workaround like this. html
<div id="about">
your about text - html whatever.
</div>
that goes on the page - it will be hidden from view below... js
$(function) {
$('#about').hide();
$('#seeme').colorbox().click(function() {
$('#about').css('display', 'block');
});
});
back to html
<a id="seeme" href="#about" rel="lightbox">about me...</a>
Mind you I have been up for about 18 hours and I wrote that without testing it - but in principle it should work. You are calling a div from the page - instead of an iframe. hmm, this needs a little work. Edited by MrTheme on 2009/10/16 12:23:00
|