cancel
Showing results for 
Search instead for 
Did you mean: 

x_background_url not showing image

I have put the following two lines in my aspx page to show a background image and logo.

 

<input id="x_Background_URL"type="hidden"name="x_Background_URL"

value="https://secure.authorize.net/mgraphics/logo_xxxx.jpg"/>

 

<inputid="x_logo_url"type="hidden"name="x_logo_url"

value="https://secure.authorize.net/mgraphics/logo_xxxx.gif"/>

 

When I run the payment form, the logo shows up fine but the background does not show at all.  I have verified that the link is correct, the image is there.

 

Anyone have a suggestion?

 

Thanks

jenM
Member
2 REPLIES 2

It might be a bug in authorize.net code. But it is removing the ":" on the https://

Workaround is just have

<input id="x_Background_URL" type="hidden" name="x_Background_URL"

value="//secure.authorize.net/mgraphics/logo_xxxx.jpg"/>

RaynorC1emen7
Expert

Thanks!  That worked.

 

-Jennifer