html - How to properly center align whats inside this table element? -
i trying edit this webpage here.
i novice front end developer , still trying learn. coworker created site copying template site thats why code screwy , unorganized (sorry!).
basically center element near bottom shown below:
and believe relevant code below, on line 263:-
<tr> <td colspan="3"><div align="center"> <p><a href="https://www.onlinebusinessbureau.com/companyrating.cfm? company_id=1843849"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="80" height="124" id="sealtracker" align="middle"> <param name="allowscriptaccess" value="samedomain" /> <param name="movie" value="https://www.onlinebusinessbureau.com/sealtracker.swf?company_id=1843849" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="https://www.onlinebusinessbureau.com/sealtracker.swf?company_id=1843849" quality="high" bgcolor="#ffffff" width="80" height="124" name="sealtracker" align="middle" allowscriptaccess="samedomain" type="application/x-shockwave-flash" pluginspage="https://www.macromedia.com/go/getflashplayer" /> </object></a><br /><span class="helvetica12"><<strong></strong></span><img src="images/us_coc_logo.png" alt="us chamber of commerce"/></p> </div></td> </tr>
from limited knowledge on tables understand should using like:
style="text-align: center; vertical-align: middle;"
i understand code huge mess, factor along limited knowledge on tables throwing me off. appreciate help.
wow, mess! :)
the way "fix" 1 of containing tables constraining width. should change:
<table width"220" border="0">
to:
<table width="100%" border="0">
Comments
Post a Comment