PDA

View Full Version : a few questions.....


JLC04
Jul-14-2007, 07:37 AM
I want my visitors to click a picture to email me. Can I do that??

Can I change the color of just one link instead of all of them??

Thanks for any help!!

Allen
Jul-14-2007, 07:56 AM
I want my visitors to click a picture to email me. Can I do that??

Can I change the color of just one link instead of all of them??

Thanks for any help!!
Can you be more specific? Is there one picture to be clicked for email or all of them?
... and do you note that clicking on pic will open email?

You probably can change the one link color depending on where it is. You
have an example and link to the one?

JLC04
Jul-14-2007, 10:43 AM
Can you be more specific? Is there one picture to be clicked for email or all of them?
... and do you note that clicking on pic will open email?

You probably can change the one link color depending on where it is. You
have an example and link to the one?




at the bottom of my page i have the words 'Email Jamie' and you can click that to email me but i also want a small thumbnail you can click on too.

i still don't understand what to do about the color of the links....

Allen
Jul-14-2007, 11:20 AM
at the bottom of my page i have the words 'Email Jamie' and you can click that to email me but i also want a small thumbnail you can click on too.

i still don't understand what to do about the color of the links.... In your footer code
change this

<a href="http://www.amazon.com/gp/product/B0000CGCOP?ie=UTF8&amp;
tag=thrmyeye0b-20&amp;linkCode=as2&amp;camp=1789&amp;
creative=9325&amp;creativeASIN=B0000CGCOP">Reed &amp;
Barton Classic Channel 8-by-10-Inch Silver-plated Picture Frame</a>
<img src="http://www.assoc-amazon.com/e/ir?t=thrmyeye0b-20&amp;l=as2&amp;
o=1&amp;a=B0000CGCOP" alt="" style="border: medium none ! important;
margin: 0px ! important;" border="0" height="1" width="1"><br>
<a href="mailto:jamie_costello@hotmail.com">E-mail Jamie!</a>

to this

<br />
<div id="myFooter">
<a href="http://www.amazon.com/gp/product/B0000CGCOP?ie=UTF8&amp;
tag=thrmyeye0b-20&amp;linkCode=as2&amp;camp=1789&amp;
creative=9325&amp;creativeASIN=B0000CGCOP">Reed &amp;
Barton Classic Channel 8-by-10-Inch Silver-plated Picture Frame</a>
<img src="http://www.assoc-amazon.com/e/ir?t=thrmyeye0b-20&amp;l=as2&amp;
o=1&amp;a=B0000CGCOP" alt="" style="border: medium none ! important;
margin: 0px ! important;" border="0" height="1" width="1">
<br /><br />
<a href="mailto:jamie_costello@hotmail.com">
<img src="http://jamiecostello.smugmug.com/photos/172638654-50x50">
<br />E-mail Jamie!</a>
</div>

Then add this to your CSS

#myFooter a {color: #ccc;}
#myFooter a:hover {color: yellow; text-decoration: none;}

See if that gets you close to what you want.

JLC04
Jul-14-2007, 01:12 PM
thank you so much!!! now i have another quesiton..
can i put different things in the footer on each page i have?? if so, how?
i would like to put those ads i have on different pages. is there a way to do that? and could i put them on the side of the page instead of the bottom of each page?