pictures not aligned in the middle-newbie

pictures not aligned in the middle-newbie

am 14.11.2007 15:21:35 von Cell Phone Repair

i am new to the asp programming, thnx for help

i am trying to do simple edit on my site www.cprauctions.com, i tried to add
VISA/MC logos as well as authorize.net logo, i aligned them in the center,
however the AUTHORIZE.NET logo still; shows on the far left

here is my html of the footer.asp







<%= TR("Copyright")%> © <%= Year(Auction.CurrentTime())
%> <%=SiteName%>. <%=TR("All Rights Reserved")%>.
<%=TR("No part of this web page may be reproduced in any way")%>,
<%=TR("or by any means, without the prior written permission
of")%> <%=SiteName%>.


<%
if ForeignCurrencyEnabled or (bMultiLangDropdown and TranslationEnabled)
then
%>

"
method="post" id="form2" name="form1">
<%
if Request.QueryString <> "" then
for each oQueryItem in Request.QueryString
if oQueryItem <> "defaultCurrency" and oQueryItem <>
"defaultLang" then
%>
value="<%=Sanitize(request(oQueryItem))%>" />
<%
end if
next
end if

if Request.Form <> "" then
for each oQueryItem in Request.Form
if oQueryItem <> "defaultCurrency" and oQueryItem <>
"defaultLang" and oQueryItem <> "description" then
%>
value="<%=Sanitize(request(oQueryItem))%>" />
<%
end if
next
end if
if ForeignCurrencyEnabled then
%>


value="<%=TR("switch currency")%>" id="submit1" name="submit1" />
<%
end if
if bMultiLangDropdown and TranslationEnabled then
%>
 
value="<%=TR("switch language")%>" id="submit2" name="submit1" />
<%
end if
%>


<%
end if
%>










<%

'UTF-8 Compatibility


%>







target="_blank">Online Payments-veriefied Authorize.net Merchant




ATM src="http://www.credit-card-logos.com/images/multiple_credit -card-logos-2/credit_card_paypal_logos_3.gif"
width="281" height="40" border="0" />

Re: pictures not aligned in the middle-newbie

am 14.11.2007 15:30:54 von Els

Cell Phone Repair wrote:

> i am new to the asp programming, thnx for help
>
> i am trying to do simple edit on my site www.cprauctions.com, i tried to add
> VISA/MC logos as well as authorize.net logo, i aligned them in the center,
> however the AUTHORIZE.NET logo still; shows on the far left

That's because you are centering it inside a div that has only 90px
space for its content:

div.AuthorizeNetSeal {
....
width:90px;
}


> here is my html of the footer.asp

[snip script/html mix]

Please don't paste a whole bunch of code, the url is enough.


--
Els http://locusmeus.com/