Capital letters in code not displaying on web site

Hi,

When I use this code:

echo "<a href=\\"cart.php?action=remove_item&productid="; echo $row["productid"]; echo "\\">";
echo "Remove</a>";

the “R” in “Remove” is displayed as “remove”. Why does it change it from a capital to a lowercase letter? I need it to be capital.

Matt.

My first guess would be to check your css for text-transform: lowercase on links

guess #2 - you have this code in two places

TomB

You are right - I was using a CSS code from somewhere else and I overlooked it so forgot to delete it. Now it’s been deleted, it is not a problem.

Thanks,

Matt.