jamez309
Member
Posted 1 year ago #
Customer Quote:
I want my image to redirect to another address, for example: http://example.net”
Except when i click on the link, the address includes my own domain and the link becomes:
http://blackops.codintelligence.com/”http://example.net”
my html code is this:
<a href="//example.net”"><img src="http://blackops.codintelligence.com/wp-content/uploads/2010/10/ordernow.jpg" alt="" title="" width="900" height="737" class="aligncenter size-full wp-image-110" /></a>
<a href="//example.net”">
should be
<a href="http://example.net">
jamez309
Member
Posted 1 year ago #
thanks for your reply, unfortunately its still including my domain with it even with http://
I just tried this code in a page and it works for me:
<a href="http://www.fcps.edu"><img src="http://www.mydomain.com/blog/wp-content/uploads/2010/10/flower-emrtemp.png"></a>
Make sure you don't have some other funny character coded in your link where you think you have a double-quote character.
agreed, I think we need to see a page with this on, to check what is actually in the link.