schlops
Established
Anyone of you guys got a little more knowledge about website coding than me?
I'm "just" trying to get the links that pop-up when you hover over pics here: http://cm-theme.tumblr.com onto my blog: http://bluesoul.tumblr.com
I tried hard, without luck.
message me please if you can help me. I can send you templates of both blogs
please.
I'm "just" trying to get the links that pop-up when you hover over pics here: http://cm-theme.tumblr.com onto my blog: http://bluesoul.tumblr.com
I tried hard, without luck.
message me please if you can help me. I can send you templates of both blogs
please.
daveleo
what?
Look at the source code of that tumblr page. Possibly you can figure out how it's done from that.
My generic popup scheme is the "onclick" command, like this:
<a href="imagename.jpg" onclick="window.open('imagename.jpg','popup','width=xxx,height=yyy,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">
<img src="thumbname.jpg" border="0" width="zzz" height="abc" alt="jpg" /></a>
It's not exactly what you're looking for but maybe you can tweak it into an "onmouseover" command ??
My generic popup scheme is the "onclick" command, like this:
<a href="imagename.jpg" onclick="window.open('imagename.jpg','popup','width=xxx,height=yyy,scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,left=0,top=0'); return false">
<img src="thumbname.jpg" border="0" width="zzz" height="abc" alt="jpg" /></a>
It's not exactly what you're looking for but maybe you can tweak it into an "onmouseover" command ??