This is probably very simple..
But
how do i set a page as my home page....
say i wanted www.todaysfishing.com/forums as my home page....
how do i do this?
++++++++++++++++++++++++++
Ok, Leo-D back again.
Here is what U need.
A Re-direct code.
My site was in Google but it showed/opened the wrong page (5th pg!). So I added a 'a' to the end and used that, readjusting all my menu links (foo-a.html). To the original page (foo.html) I added the re-direct and had it go to index. So foo is only there to re-direct because of the bad listing.
Get it?
This is from htmlgoodies.com newsletter. I think... It has a QnA.
Here is the answer you need. There is a problem tho, it is so fast you can't view source to make any changes!!! The answer is ALWAYS KEEP A TEXT ONLY COPY!!!!!!! Then make changes, then save as foo.html or ?
This is it... have fun. Remember, save a TEXT COPY!!!
A. You could use setTimeout() to perform a function to redirect after so many milliseconds. Here is an example that will redirect to the specified link after 2000 milliseconds (2 seconds):
<script>
<!--
function Redirect(linkid)
{
top.location.href=linkid
}
if (screen.width<=640)
setTimeout('Redirect("index640.html")',2000);
if (screen.width<=800)
setTimeout('Redirect("index800.html")',2000);
if (screen.width<=1024)
setTimeout('Redirect("index1024.html")',2000)
top.location.href="index1280.html";
//-->
</script>
Any problems, goto htmlgoodies.com
Leo-D :mrgreen: