PDA

View Full Version : How can I...


Malaxos1
Jun-02-2005, 02:20 PM
I want to add a link to my email address on my home page. Can this be done? Thanks...Dean

seaelven
Jun-02-2005, 02:28 PM
I want to add a link to my email address on my home page. Can this be done? Thanks...DeanYes! It can!
But we need to know what programs your using....

Nikolai
Jun-02-2005, 02:33 PM
I want to add a link to my email address on my home page. Can this be done? Thanks...DeanSmth like this?

< a href="mailto:myname@mydomain.com" >Write me!< /a >
(remove the spaces from < and > )

HTH

Malaxos1
Jun-02-2005, 09:28 PM
Nikola, it didn't work...DeanSmth like this?

< a href="mailto:myname@mydomain.com" >Write me!< /a >
(remove the spaces from < and > )

HTH

devbobo
Jun-02-2005, 09:41 PM
Nikola, it didn't work...Dean
Dean,

I added one to the bottom of my website, using this code...

<a href="mailto:devbobo@gmail.com">Email Me</a>

hope this helps.

BTW, there is a typo in ur footer, "copyroght" should be 'copyright' http://dgrin.com/images/smilies/rolleyes1.gif

Cheers,

David

Malaxos1
Jun-02-2005, 11:05 PM
Dave, it didn't work. Maybe I am doing something wrong. All I get is the HTML code but no link. I do have to work this out. BTW, tomorrow is the end of my 1 week trial and if it wasn't for all your help I think I would have opted out. So far I like what has been accomplished...Dean

devbobo
Jun-02-2005, 11:14 PM
Dave, it didn't work. Maybe I am doing something wrong. All I get is the HTML code but no link. I do have to work this out.
hmm...seems weird. What section of the HTML are you trying insert the link ?
in the customise section or in an album ? Make to changes to the website and I will see if i can work out what's going on,

BTW, tomorrow is the end of my 1 week trial and if it wasn't for all your help I think I would have opted out. So far I like what has been accomplished No problem at all, glad I could help.

Cheers,

David

Malaxos1
Jun-02-2005, 11:24 PM
Cool, I did it. I added it under my name on the top. How can I make the email link bigger? Also, when I click anywhere near it , it selects it. Even all the way accross the page. I would like to fix that...Dean

devbobo
Jun-02-2005, 11:33 PM
Cool, I did it. I added it under my name on the top. How can I make the email link bigger? Also, when I click anywhere near it , it selects it. Even all the way accross the page. I would like to fix that...Dean
ok..firstly let's start with one small problem, this is ur current code...

<H1>Dean Malaxos Photography</H1>
<a href="mailto:deansphotos@hotmail.com">Email

<H4>TELEPHONE:</H4><H3>503-491-0778</H3>

it should be like this, note the closing element after 'Email'...

<H1>Dean Malaxos Photography</H1>
<a href="mailto:deansphotos@hotmail.com">Email</a>

<H4>TELEPHONE:</H4><H3>503-491-0778</H3>


To make the Email link bigger, you could do something like this...

<H1>Dean Malaxos Photography</H1>
<a href="mailto:deansphotos@hotmail.com"><h4>Email</h4></a>

<H4>TELEPHONE:</H4><H3>503-491-0778</H3>

Malaxos1
Jun-02-2005, 11:44 PM
OK, you are a genius. Thanks again, I am sure I will have a few more questions for you...Dean