PDA

View Full Version : Help, In over my Head!


spockling
Feb-23-2007, 06:32 PM
I'm trying something a bit different I think, and I think I'm messing things up too much.

I'm trying to use an image map on my homepage. It will have a slideshow running in the bioBox in the center of the screen.

I currently have one link (kinda working) the Buy Prints one, but I would like a hand to show up using an onmouseover?

Also, when I get the links working, when I or whoever clicks on the gallery link, I would like the homepage to not be displayed, but I would like to run a custom header on those pages.

And is there anyway of getting all of the footer to fit into the box at the bottom of the screen?

Thanks in advance for all your help.

Allen
Feb-23-2007, 06:43 PM
I'm trying something a bit different I think, and I think I'm messing things up too much.

I'm trying to use an image map on my homepage. It will have a slideshow running in the bioBox in the center of the screen.

I currently have one link (kinda working) the Buy Prints one, but I would like a hand to show up using an onmouseover?

Also, when I get the links working, when I or whoever clicks on the gallery link, I would like the homepage to not be displayed, but I would like to run a custom header on those pages.

And is there anyway of getting all of the footer to fit into the box at the bottom of the screen?

Thanks in advance for all your help. First thing to do is enclose your map in a div. I used map1x here but you can use something else.

<*div align="center">
<*div id="map1x">
<map name="m ....
.
.
... LonePine Photography" usemap="#map1" border="0" height="100%" width="100%"><*br>
<*/div>
<*/div>

ignore the *'s

Then put this in your CSS. Your map will only show on the home page.

#map1x {display:none;}

.homepage #map1x {display:block;}

Hope this helps

spockling
Feb-23-2007, 06:57 PM
Thanks Allen! Works Great!:clap