PDA

View Full Version : WHats Going On Ect CENTERED on IE


DieselMinded
02-18-2008, 01:27 AM
My site looks like crap on IE why is Everything CENTERED ?

Guest210212002
02-18-2008, 01:50 AM
I see this in your source:


<!-- open content container -->

<div align="center">

Perhaps you missed the closing /div?

Edit: It looks like it's outside the content table for sure, because your actual forums are aligned left, it's just the post-navbar content and your footer that's centered. Try stripping the guest header stuff first, and see if it realigns. It's just a missed /tag somewhere.

DieselMinded
02-18-2008, 01:53 AM
How do i fix this?

Thanks for your help

Guest210212002
02-18-2008, 01:55 AM
I'm thinking it's probably in the second registration thing you added. Without seeing the actual template it's hard to tell. Try putting a </div> at the end of whatever code you're using for that.

DieselMinded
02-18-2008, 02:25 AM
I added a </div> at the end of my quick register and it Streched my forums out 100% with noi boarder

Heres my Quick Register Template

<if condition="$vboptions['quickregister_active'] AND $show['guest']">
<!-- Start Quick Register --><table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="6"><div align="center"><b>$vbphrase[quickregister_quickregister]</b></div></td>
</tr>
<tr>
<td class="alt1" colspan="6"> <div align="center">
<span class="smallfont"><script type="text/javascript" src="$vboptions[bburl]/clientscript/vbulletin_md5.js"></script>
<script type="text/javascript">
function verify_passwords(password1, password2)
{
// do various checks, this will save people noticing mistakes on next page
if (password1.value == '' || password2.value == '')
{
alert('Fill out both password fields');
return false;
}
else if (password1.value != password2.value)
{
alert('Entered passwords do not match');
return false;
}
else
{
md5hash(password1, document.forms.register.password_md5);
md5hash(password2, document.forms.register.passwordconfirm_md5);
return true;
}
return false;
}
</script>
<form action="$vboptions[bburl]/register.php" name="register" method="post" onsubmit="return verify_passwords(password, passwordconfirm);">
<input type="hidden" name="s" value="" />
<input type="hidden" name="do" value="addmember" />
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="agree" value="" />
<input type="hidden" name="password_md5" />
<input type="hidden" name="passwordconfirm_md5" />
<if condition="$vboptions['quickregister_welcomemsg']">
$vboptions[quickregister_welcomemsgtext]<br><br>
</if>
$vbphrase[quickregister_username]
<input type="text" class="bginput" name="username" maxlength="15" value="" style="width:70px" />
$vbphrase[quickregister_password]
<input type="password" class="bginput" name="password" maxlength="15" value="" style="width:70px" />
$vbphrase[quickregister_confirmpassword]
<input type="password" class="bginput" name="passwordconfirm" maxlength="15" value="" style="width:70px" />
$vbphrase[quickregister_email]
<input type="text" class="bginput" name="email" maxlength="50" value="" style="width:70px" />
$vbphrase[quickregister_confirmemail]
<input type="text" class="bginput" name="emailconfirm" maxlength="50" value="" style="width:70px" /><br>
<if condition="$vboptions['quickregister_dob']">
$vbphrase[quickregister_birthday]
<select name="month" id="bd_month"style="width:70px" />
<option value="-1">$vbphrase[quickregister_bdmonth]</option>
<option value="01">January</option>
<option value="02">February</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">July</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select> &nbsp;
<select name="day" id="bd_day"style="width:70px" />
<option value="-1" >$vbphrase[quickregister_bdday]</option>
<option value="01" >1</option>
<option value="02" >2</option>
<option value="03" >3</option>
<option value="04" >4</option>
<option value="05" >5</option>
<option value="06" >6</option>
<option value="07" >7</option>
<option value="08" >8</option>
<option value="09" >9</option>
<option value="10" >10</option>
<option value="11" >11</option>
<option value="12" >12</option>
<option value="13" >13</option>
<option value="14" >14</option>
<option value="15" >15</option>
<option value="16" >16</option>
<option value="17" >17</option>
<option value="18" >18</option>
<option value="19" >19</option>
<option value="20" >20</option>
<option value="21" >21</option>
<option value="22" >22</option>
<option value="23" >23</option>
<option value="24" >24</option>
<option value="25" >25</option>
<option value="26" >26</option>
<option value="27" >27</option>
<option value="28" >28</option>
<option value="29" >29</option>
<option value="30" >30</option>
<option value="31" >31</option>
</select> &nbsp;
<input type="text" class="bginput" name="year" onFocus="value=''" value="$vbphrase[quickregister_bdyear]" size="4" maxlength="4" id="bd_year" style="width:50px" /></if>
<table border="0" width="75%" align="center">
<tr>
<td>$imagereg</td>
</tr>
</table>
<input type="submit" class="button" value="$vbphrase[quickregister_submit]" accesskey="s" /><input name="agree" id="cb_rules_agree" value="1" type="checkbox"><strong>$vbphrase[quickregister_agree] <a href="$vboptions[bburl]/register.php?" target="_blank">$vbphrase[quickregister_forumrules]</a></strong>&nbsp;

</span></form>
</div></td>
</tr>
</thead>
</table>
<br></if>
<!-- End Quick Register --></if>


--------------- Added 1203308878 at 1203308878 ---------------

Heres my Forum Home Template

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<!-- no cache headers -->
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
<!-- end no cache headers -->
$headinclude
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
</head>
<body>
$header
$navbar
<if condition="$show['guest']">
<!-- guest welcome message -->
<tr>
<td class="tcat" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"></td>
</tr>
<tr>
<div style="background: #E8E8E8; border: 2px dashed #448833; padding: 8px; text-align: center; font-size: 90%;"><font color="#000000">
Welcome To Diesel Bombers an All Diesel Discussion Forum Ask Questions and Our Community Will Help You or Maybe you can Help Someone Else , Take a Second and Click Around Joining the site is FREE & Easy and will unlock a ton of features your not seeing as a Guest Were Dedicated to Creating the Funnest and Most Educational Member First All Brand Diesel Forum Online! Check out our Arcade and our Casino ! We Have an Award Winning Chat System, We Run On 3 Servers To keep the site fast , We offer a Wide Range of Forums to suit the needs of just about anyone , We Pride our Selves on Being a site for Enthusiasts of ALL DIESELS Cars,Trucks,Tractors Ect You can set your Account up in SECONDS! Come on in to give us a real shot to be your Hang Out and Join in The FUN !<a href="register.php?"> <b>SO SIGN UP NOW</b></a>.

You dont have to wait for an email confirmation its instant!<a href="register.php?"><b>Create your free account now!</b></a>.
</div>

<br /></td>
</tr>
</font>
<!-- / guest welcome message --> </if>
<!-- main -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>

<tr align="center">
<td class="thead">&nbsp;</td>
<td class="thead" width="100%" align="$stylevar[left]">$vbphrase[forum]</td>
<td class="thead" width="175">$vbphrase[last_post]</td>
<td class="thead">$vbphrase[threads]</td>
<td class="thead">$vbphrase[posts]</td>
<if condition="$vboptions['showmoderatorcolumn']">
<td class="thead">$vbphrase[moderator]</td>
</if>
</tr>
</thead>
$forumbits
<tbody>
<tr>
<td class="tfoot" align="center" colspan="<if condition="$vboptions['showmoderatorcolumn']">6<else />5</if>"><div class="smallfont"><strong>
<a href="forumdisplay.php?$session[sessionurl]do=markread" rel="nofollow">$vbphrase[mark_forums_read]</a>
<if condition="$vboptions['forumleaders']">&nbsp; &nbsp;
<a href="showgroups.php$session[sessionurl_q]" rel="nofollow">$vbphrase[view_forum_leaders]</a></if>
</strong></div></td>
</tr>
</tbody>
</table>
$forumhome_markread_script
<!-- /main -->
<div align="center">
<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" width="849" height="116">
<!-- MSTableType="layout" -->
<tr><td width="174" align="center">
<a target="_blank" class="banner" href="http://www.fixinrams.com">
<img src="/bannerads/fixinramsadgears.gif" vspace="2"><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img src="/bannerads/nhrda.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.warn.com">
<img src="/bannerads/warnad.gif" vspace="2"><a target="_blank" class="banner" href="http://www.dieselbombers.com"> <img src="/bannerads/reserved.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.dieseldawgs.com">
<img src="/bannerads/ddsmall.gif" vspace="2"><a target="_blank" class="banner" href="http://www.pureflowtechnologies.com/Raptor.htm"> <img src="/bannerads/raptorad.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.unkletimz.com">
<img src="/bannerads/salsa.gif" vspace="2"><a target="_blank" class="banner" href="http://www.cafepress.com/dieselbombers"> <img src="/bannerads/bombergearad.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.dieselbombers.com"><img src="/youradhere.gif" vspace="2"><a target="_blank" class="banner" href="mailto:tmurata@ohiohills.com?subject=Diesel Bombers Ad Email"> <img src="/bannerads/tad.gif" vspace="2"></a></td>
</tr></table>
<!-- what's going on box -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>
<if condition="$show['loggedinusers']">
<!-- logged-in users -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
<a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_activeusers" style="$vbcollapse[collapseobj_forumhome_activeusers]">
<tr>
<td class="alt2"><a href="online.php$session[sessionurl_q]" rel="nofollow"><img src="$stylevar[imgdir_misc]/whos_online.gif" alt="$vbphrase[view_whos_online]" border="0" /></a></td>
<td class="alt1" width="100%">
<div class="smallfont">
<div style="white-space: nowrap"><phrase 1="$recordusers" 2="$recorddate" 3="$recordtime">$vbphrase[most_users_ever_online_was_x_y_at_z]</phrase></div>
<div>$activeusers</div>
</div>
</td>
</tr>
</tbody>
<!-- end logged-in users -->
</if>
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_stats')"><img id="collapseimg_forumhome_stats" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_stats].gif" alt="" border="0" /></a>
<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_stats" style="$vbcollapse[collapseobj_forumhome_stats]">
<tr>
<td class="alt2"><img src="$stylevar[imgdir_misc]/stats.gif" alt="<phrase 1="$vboptions[bbtitle]">$vbphrase[x_statistics]</phrase>" border="0" /></td>
<td class="alt1" width="100%">
<!-- vbTrends Start -->
$vbtrends_output
<if condition="$show['subscribers']">
$vbphrase[last_paid_subscribers_display]
$showsubscribers
</if>
<!-- vbTrends End -->

</td>
</tr>
</tbody>
<if condition="$show['birthdays']">
<!-- today's birthdays -->
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_birthdays')"><img id="collapseimg_forumhome_birthdays" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_birthdays].gif" alt="" border="0" /></a>
$vbphrase[todays_birthdays]
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_birthdays" style="$vbcollapse[collapseobj_forumhome_birthdays]">
<tr>
<td class="alt2"><a href="calendar.php?$session[sessionurl]do=getday&amp;day=$today&amp;sb=1"><img src="$stylevar[imgdir_misc]/birthday.gif" alt="$vbphrase[view_birthdays]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$birthdays</div></td>
</tr>
</tbody>
<!-- end today's birthdays -->
</if>
<if condition="$show['upcomingevents']">
<tbody>
<tr>
<td class="thead" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
<if condition="$show['todaysevents']">$vbphrase[todays_events]<else /><phrase 1="$vboptions[showevents]">$vbphrase[upcoming_events_for_the_next_x_days]</phrase></if>
</td>
</tr>
</tbody>
<tbody id="collapseobj_forumhome_events" style="$vbcollapse[collapseobj_forumhome_events]">
<tr>
<td class="alt2"><a href="calendar.php$session[sessionurl_q]"><img src="$stylevar[imgdir_misc]/calendar.gif" alt="$vbphrase[calendar]" border="0" /></a></td>
<td class="alt1" width="100%"><div class="smallfont">$upcomingevents</div></td>
</tr>
</tbody>
</if>
</table>
<br />
<!-- end what's going on box -->
$latest

<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
<td>
<table cellpadding="2" cellspacing="0" border="0">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
</tr>
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
</tr>
<if condition="$vboptions['showlocks']">
<tr>
<td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
<td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
</tr>
</if>
</table>
</td>
<if condition="!$show['guest']">
<!-- member logout -->
<td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
<!-- end member logout -->
</if>
</tr>
</table>
<!-- / icons and login code -->

$footer
</body>
</html>

--------------- Added 1203309009 at 1203309009 ---------------

I found it i think ...

<!-- /main -->
<div align="center">
<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" width="849" height="116">
<!-- MSTableType="layout" -->
<tr><td width="174" align="center">
<a target="_blank" class="banner" href="http://www.fixinrams.com">
<img src="/bannerads/fixinramsadgears.gif" vspace="2"><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img src="/bannerads/nhrda.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.warn.com">
<img src="/bannerads/warnad.gif" vspace="2"><a target="_blank" class="banner" href="http://www.dieselbombers.com"> <img src="/bannerads/reserved.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.dieseldawgs.com">
<img src="/bannerads/ddsmall.gif" vspace="2"><a target="_blank" class="banner" href="http://www.pureflowtechnologies.com/Raptor.htm"> <img src="/bannerads/raptorad.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.unkletimz.com">
<img src="/bannerads/salsa.gif" vspace="2"><a target="_blank" class="banner" href="http://www.cafepress.com/dieselbombers"> <img src="/bannerads/bombergearad.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.dieselbombers.com"><img src="/youradhere.gif" vspace="2"><a target="_blank" class="banner" href="mailto:tmurata@ohiohills.com?subject=Diesel Bombers Ad Email"> <img src="/bannerads/tad.gif" vspace="2"></a></td>
</tr></table>
<!-- what's going on box -->

--------------- Added 1203309186 at 1203309186 ---------------

Nope !

--------------- Added 1203309340 at 1203309340 ---------------

Do i need to add a bunch of </div> to the end of the what i have between the forums and whats going on box ?

--------------- Added 1203309410 at 1203309410 ---------------

And why is my right banner ad Lower than the left one

IE SUCKS !!!!!!!!!!!!!!

Guest210212002
02-18-2008, 02:39 AM
You only need one closing div, and if it's not in exactly the right place, it's going to close a different tag and (as you've seen) hose things even worse. If you drop the quick register mod, does the problem go away?

From what I can tell your forumhome template looks fine, so I don't think it's in there. Where's the quick register template actually called?

DieselMinded
02-18-2008, 02:43 AM
I disabled it and no it didnt fix it , I turned it back on ,

Thanks for your help so far ....

--------------- Added 1203309969 at 1203309969 ---------------

Its Centered even when logged in on IE So its not the Quick Register it has to be something with this

<!-- /main -->
<div align="center">
<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" width="849" height="116">
<!-- MSTableType="layout" -->
<tr><td width="174" align="center">
<a target="_blank" class="banner" href="http://www.fixinrams.com">
<img src="/bannerads/fixinramsadgears.gif" vspace="2"><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img src="/bannerads/nhrda.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.warn.com">
<img src="/bannerads/warnad.gif" vspace="2"><a target="_blank" class="banner" href="http://www.dieselbombers.com"> <img src="/bannerads/reserved.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.dieseldawgs.com">
<img src="/bannerads/ddsmall.gif" vspace="2"><a target="_blank" class="banner" href="http://www.pureflowtechnologies.com/Raptor.htm"> <img src="/bannerads/raptorad.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.unkletimz.com">
<img src="/bannerads/salsa.gif" vspace="2"><a target="_blank" class="banner" href="http://www.cafepress.com/dieselbombers"> <img src="/bannerads/bombergearad.gif" vspace="2"></a></td>
<td width="174" align="center">
<a target="_blank" class="banner" href="http://www.dieselbombers.com"><img src="/youradhere.gif" vspace="2"><a target="_blank" class="banner" href="mailto:tmurata@ohiohills.com?subject=Diesel Bombers Ad Email"> <img src="/bannerads/tad.gif" vspace="2"></a></td>
</tr></table>
<!-- whats going on box -->

Guest210212002
02-18-2008, 02:50 AM
Hrm, I've got your source open in an editor, I don't think it's the quickregister - I took it completely out and your WGO / recent posts is still centered. I'll let you know if I find anything.

DieselMinded
02-18-2008, 02:50 AM
Nothing is centered until My Ad block then everything is centered

Guest210212002
02-18-2008, 02:51 AM
I think I found it.


<!-- /main -->
<div align="center">

Look for that, and kill that whole div statement.

Edit: Yeah, that works in my editor. :) Don't mind the broken images, I'm working with a cached copy.

http://www.sevenstring.org/chris/dbomb.jpg

DieselMinded
02-18-2008, 02:53 AM
Ok Lets see.............

--------------- Added 1203310650 at 1203310650 ---------------

OK That fixed it but now all my ads down there are to the left also and bunched together , Look at it in Firefox its perfect but in IE its to the left and crunched together How do i fix that

THanks Again !

Guest210212002
02-18-2008, 02:59 AM
To re-center your banners above the WGO box, add the red center to the actual table call, and (imo) drop the width statement, since it'll auto-span to the size of the container anyhow.


<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" width="849" height="116" align="center">

Edit: Or make the width ="100%", which might be better.

Edit again: Actually, if you drop all the actual size constraints from that table (cell width/height as well) it would center all the images and span them across.

Anytime, btw. :)

--------------- Added 1203310881 at 1203310881 ---------------

I'd also toss a border="0" around the actual banner images themselves, to get rid of the blue border.


<img border="0" src="/bannerads/ddsmall.gif" vspace="2">

DieselMinded
02-18-2008, 03:04 AM
OK i made your edits and it centered the Ad Block ,the ads are spaced horizontally but not Vertically , IS there anyway to fix that ,

Man your a Ton of Help Thanks !

--------------- Added 1203311335 at 1203311335 ---------------

OK let me try them edits !! :) BTW Why is my right banner lower than my left on IE ?

<table border="0" width="930" height="60">
<tr>
<td height="60" width="465" align="center">&nbsp;$header_advertisement</td>
<td height="60" width="465" align="center">&nbsp;$footer_advertisement</td>
</tr>
</table>

Guest210212002
02-18-2008, 03:10 AM
They look just right in IE to me now. :) Just toss the border="0" in the IMG tags and you'll be stylin'.

Cheers man. :)

--------------- Added 1203311513 at 1203311513 ---------------

OK i made your edits and it centered the Ad Block ,the ads are spaced horizontally but not Vertically , IS there anyway to fix that ,


What I'd do (keep in mind I'm half asleep, haha) would be to add an &nbsp; to each side of the image, just to space them out a little bit from each other. The extra little vertical space, I'll have to take a peek at your code tomorrow and see where that's coming from. (I'd do it now, but it's 12:11AM and I'll just give you bad advice. ;) )

--------------- Added 1203311686 at 1203311686 ---------------

Check that - it looks like you have two banners per cell. You aren't closing the first href call though, take a look:

The red code is missing.


<a target="_blank" class="banner" href="http://www.fixinrams.com">
<img src="/bannerads/fixinramsadgears.gif" vspace="2"></a><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img src="/bannerads/nhrda.gif" vspace="2"></a></td>

Try like so, the red is what's changed. This will close the tags properly, and drop the border around the images. It looks cool blue, but it'll go purple on you once you click the link in IE.


<a target="_blank" class="banner" href="http://www.fixinrams.com">
<img border="0" src="/bannerads/fixinramsadgears.gif" vspace="2"></a><a target="_blank" class="banner" href="http://www.nhrda.com/"> <img border="0" src="/bannerads/nhrda.gif" vspace="2"></a></td>

If you went with one ad per cell and two rows, it'd be neater and easier to format.


<table border="0" bordercolorlight="#000000" cellspacing=".4" cellpadding=".4" align="center">
<tr><td>banner 1</td><td>banner 2</td><td>banner 3</td><td>banner 4</td></tr>
<tr><td>banner 5</td><td>banner 6</td><td>banner 7</td><td>banner 8</td></tr>
</table>


Something like that, with the actual banner codes in there.
Adding in your CSS, style, width, etc.

DieselMinded
02-18-2008, 03:16 AM
Ok Ill add the Red Code

I made the edits as you say to the Ad Block above WGO and on IE there still not spread out ...can you see it ... Compaired to FireFox ?

Thanks

--------------- Added 1203312023 at 1203312023 ---------------

Ok Ill add the </a>

Any Idea on the Big Banner ad The Right ones lower

Guest210212002
02-18-2008, 03:21 AM
Ok Ill add the Red Code

I made the edits as you say to the Ad Block above WGO and on IE there still not spread out ...can you see it ... Compaired to FireFox ?

Thanks

Yeah, the extra little vertical space is still there because it's two images per cell. I think it looks pretty great right now - They won't go all the way to the edge of your forum table just because of the general size of the images. They're centered on the page (and look WAY better without the border, if you ask me :) ).

DieselMinded
02-18-2008, 03:28 AM
Thanks Man I Added the </a> Didnt seem to change anything

But we made Great Strides !! :)

About the CSS and all that Im not real Sure what i need to do there ...lol

Any idea why IE wants the right top Banner lower than the left ?

<table border="0" width="930" height="60">
<tr>
<td height="60" width="465" align="center">&nbsp;$header_advertisement</td>
<td height="60" width="465" align="center">&nbsp;$footer_advertisement</td>
</tr>
</table>

Thanks Again You have been alot of help

--------------- Added 1203312659 at 1203312659 ---------------

BTW i used Front page to code the ad blocks ...hehehe

Guest210212002
02-18-2008, 02:46 PM
Thanks Man I Added the </a> Didnt seem to change anything


The </a> doesn't change the appearance, it just closes the tag properly. :)

And ack, frontpage! Noooo! ;)

I use HTML-Kit, and good ol' notepad.

http://www.chami.com/html-kit/

DieselMinded
02-18-2008, 03:43 PM
Ok ive downloaded your Program , ANy idea why the banners at the top wants to be uneven on IE only ?Other than the fact that IE Sucks

Thanks