OR -- rather than just adding a meta-refresh to the head and leaving 
all of the other code there (which takes a while to load / so the 
redirect is slow),
you can create a page that has just one image on it (like a logo) and 
attach javascript redirecting to view to the image.

Like this page:
http://astro.temple.edu/~jsimmons

Here's the relevant code:
This is in the head tag:

<script language="JavaScript" type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
   var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
   for (i=0; i<(args.length-1); i+=2) 
eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
</script>

And this is in the body:
<a href="http://www.jensimmons.com/blog";>
<img src="card.jpg" 
onload="MM_goToURL('parent','http://www.jensimmons.com/blog');return 
document.MM_returnValue" />
</a>

I put the manual link code there in case someone's browser misses the 
javascript, then they can click on the image and get to the new site.

If you make a plain-jane html page and use this code, you can make that 
your "template" in blogger, and blogger will post it to index.html. It 
just won't have any blogger tags in it, so nothing from your blog will 
show up. This does take a bit more knowledge of how to create an html 
page from scratch, so the other solution is easier for people who only 
know how to use blogger. Here, I'll paste the full html into the end of 
this message, so you can see the whole thing.

Thanks to Verdi!! (all hail!)

jen

_______________________________________

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml";>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" 
/>
<title>jenSimmons</title>
<style type="text/css">
<!--
body {
        background-color: #FEDE2F;
        background-image: url(paper.jpg);
}
-->
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_goToURL() { //v3.0
   var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
   for (i=0; i<(args.length-1); i+=2) 
eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
</script>
</head>

<body>
<div align="center">
   <p><a href="http://www.jensimmons.com/blog";><img src="card.jpg" 
border="0" 
onload="MM_goToURL('parent','http://www.jensimmons.com/blog');return 
document.MM_returnValue" /></a></p>
</div>
</body>
</html>



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/videoblogging/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to