unsubscribe.php

louie

New Member
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 [email protected] has been successfully removed from our database.

You can see the "[email protected]" 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
:D
 

stanbusk

Administrator
Staff member
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 }
 

louie

New Member
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 [email protected] has been successfully removed from our database".

As you can see there is no need for link or colour in "[email protected]" 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!
 
Top