Hi, Need your help with html, look at the bottom of the page http://bidbut.com/user_reg.php Text "Pay safely on BidBut.Com:" are not centered to images, working fine on all other pages except this one, tried everything, doesn't help, need some professional suggestion. Thank you very much
Use <center> </center> or <div align="center"> </div> If you want it to be in new line then use <br /> after Pay safely on BidBut.Com: Thanks.
<div id="footertext" align="center"><center>Pay safely on BidBut.Com:</div> look here mate... if u open a tag u have 2 close. so close your <center> tag using </center> correction <div id="footertext" align="center"><center>Pay safely on BidBut.Com:</center></div>
There is no need to use align="center" at all or <center> which I think is depreceated as this can be done with CSS. Adding margin: 0 auto; to the CSS for the element in question will center it. So let's say I have <div id="footer">© My Design 2009</div> And have inside the CSS: #footer { margin: 0 auto; width 95%; background: black; } The footer will then be centered. As it applies 0px margin to the top and bottom of the element, but automatically calculates the left and right margins to center the element.
Hello , Thank you very much for your replies, but none of the suggestion helps. Any other suggestions ? =(
Hi, 2nd row below no style="align:center;", could be a problem. And then the <center> tag's surplus. <div id="footer" style="align:center;"> <div id="footertext" align="center"><center>Pay safely on BidBut.Com:</div> As a matter of interest we see above the <html> tag the following: <table width="980" cellpadding="0" cellspacing="0" border=0 align="center"> <tr><td> Should it maybe be somewhere else? Regards, Mike
Have people forgotten how to use CSS styling properly? #footertex{ text-align:center; } table { width:980px; cellpadding:0px; cellspacing:0px: border:0px; text-align:center; }