| Author |
Message |
louie
Joined: 05 Jun 2009 Posts: 3 Location: SYDNEY
|
Posted: Wed Jun 17, 2009 2:28 am Post subject: unsubscribe.php |
|
|
HI,
I did email link with following script from your PHP file, I modified font size and colour, works fine. Only thing I want is how can I change the blue email address colour and get rid of underline.
$success_text .= "<h4><font color=000000>Your email address <a href=$email>$email</a> has been successfully removed from our database.<br>\n";
Your email address testemail@gmail.com has been successfully removed from our database.
You can see the "testemail@gmail.com" is in blue colour which I like to change them same as the rest of type in nornal black colour, also get rid of underline
I tryied few way like:
"text-decoration: none;border-bottom:1px double red;"
but did not work.
Please advise!
Many thanks
 |
|
| Back to top |
|
 |
stanbusk Site Admin
Joined: 28 Dec 2005 Posts: 4404
|
Posted: Wed Jun 17, 2009 10:42 am Post subject: |
|
|
It is a CSS like:
A:link { color: #396D84; font-weight: normal; text-decoration: none }
A:visited { color: #396D84; font-weight: normal; text-decoration: none }
A:active { color: #86B82D; text-decoration: none }
A:hover { color: #86B82D; font-weight: normal; text-decoration: none } |
|
| Back to top |
|
 |
louie
Joined: 05 Jun 2009 Posts: 3 Location: SYDNEY
|
Posted: Thu Jun 18, 2009 2:10 am Post subject: |
|
|
This is a Unsubscribe link from Email Html:
<a href="http://www.testmail.com/unsubscribe/unsubscribe.php?email=[E-mail Address]"style="text-decoration:none;border-bottom:1px double red;"><font color="red">unsubscribe here.<br>
The tag [E-mail Address], is an email address the person who send email.
"unsubscribe here." is a red font link, with 1px underline red too.
After click the unsubscribe here., then go to URL pop up new window:
"Your email address testemail@gmail.com has been successfully removed from our database".
As you can see there is no need for link or colour in "testemail@gmail.com" email address.
This is what I want, after click "Unsubscribe me" just a plain text tell a person his/her email address is removed.
Can anyone help please?
Thanks! |
|
| Back to top |
|
 |
|