Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 02-18-2008, 01:27 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default WHats Going On Ect CENTERED on IE

My site looks like crap on IE why is Everything CENTERED ?
Reply With Quote
  #2  
Old 02-18-2008, 01:50 AM
Guest210212002
Guest
 
Posts: n/a
Default

I see this in your source:

Code:
<!-- 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.
Reply With Quote
  #3  
Old 02-18-2008, 01:53 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How do i fix this?

Thanks for your help
Reply With Quote
  #4  
Old 02-18-2008, 01:55 AM
Guest210212002
Guest
 
Posts: n/a
Default

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.
Reply With Quote
  #5  
Old 02-18-2008, 02:25 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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

PHP Code:
<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(password1password2)
{
// 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(password1document.forms.register.password_md5);
md5hash(password2document.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 [DATE]1203308878[/DATE] at [TIME]1203308878[/TIME] ---------------

Heres my Forum Home Template

PHP Code:
$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 OnlineCheck out our Arcade and our Casino  We Have an Award Winning Chat SystemWe 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 SECONDSCome 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 [DATE]1203309009[/DATE] at [TIME]1203309009[/TIME] ---------------

I found it i think ...

PHP Code:
<!-- /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 [DATE]1203309186[/DATE] at [TIME]1203309186[/TIME] ---------------

Nope !

--------------- Added [DATE]1203309340[/DATE] at [TIME]1203309340[/TIME] ---------------

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 [DATE]1203309410[/DATE] at [TIME]1203309410[/TIME] ---------------

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

IE SUCKS !!!!!!!!!!!!!!
Reply With Quote
  #6  
Old 02-18-2008, 02:39 AM
Guest210212002
Guest
 
Posts: n/a
Default

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?
Reply With Quote
  #7  
Old 02-18-2008, 02:43 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I disabled it and no it didnt fix it , I turned it back on ,

Thanks for your help so far ....

--------------- Added [DATE]1203309969[/DATE] at [TIME]1203309969[/TIME] ---------------

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

PHP Code:
<!-- /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 --> 
Reply With Quote
  #8  
Old 02-18-2008, 02:50 AM
Guest210212002
Guest
 
Posts: n/a
Default

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.
Reply With Quote
  #9  
Old 02-18-2008, 02:50 AM
DieselMinded's Avatar
DieselMinded DieselMinded is offline
 
Join Date: Mar 2007
Posts: 1,655
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nothing is centered until My Ad block then everything is centered
Reply With Quote
  #10  
Old 02-18-2008, 02:51 AM
Guest210212002
Guest
 
Posts: n/a
Default

I think I found it.

Code:
<!-- /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.

Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:32 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05216 seconds
  • Memory Usage 2,505KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_code
  • (4)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (5)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete