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

Reply
 
Thread Tools Display Modes
  #1  
Old 04-14-2007, 10:10 AM
imk imk is offline
 
Join Date: Dec 2006
Posts: 809
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Why isnt my logo centering?

<a href="http://www.whoyoureppin.com/forum.php" target="_blank">http://www.whoyoureppin.com/forum.php</a>

or is it my forum thats of align?

either way any help how i can sort this out please.?

thanks alot.
Reply With Quote
  #2  
Old 04-14-2007, 10:14 AM
hambil's Avatar
hambil hambil is offline
 
Join Date: Jun 2004
Location: Seattle
Posts: 1,719
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by imk View Post
http://www.whoyoureppin.com/forum.php

or is it my forum thats of align?

either way any help how i can sort this out please.?

thanks alot.
It's centering just fine until the right sidebar pops up. I'd contact the author of the sidebar and get them to fix it, because it's not playing well with vb template structure and style vars.
Reply With Quote
  #3  
Old 04-14-2007, 10:22 AM
Coux Coux is offline
 
Join Date: Mar 2007
Posts: 64
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

def a side bar problem..
Reply With Quote
  #4  
Old 04-14-2007, 10:36 AM
imk imk is offline
 
Join Date: Dec 2006
Posts: 809
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the thing is when i disable the side bar, it still isnt correct....maybe i should uninstall it completely?

http://www.whoyoureppin.com/forum.php

ive just uninstalled it but its not ligning up correctly...any ideas?

codes?
Reply With Quote
  #5  
Old 04-14-2007, 01:37 PM
amir86 amir86 is offline
 
Join Date: Feb 2007
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Have you added the <td align="center"> in header template? Make sure you removed the <td align="$stylevar[right]">
&nbsp;


style manager>
edit
Common Templates>
Header

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="center"></a></td>
<td align="$stylevar[right]">
&nbsp;

</td>
</tr>
</table>
<!-- /logo -->

delete red text
add green text
Reply With Quote
  #6  
Old 04-14-2007, 04:40 PM
hambil's Avatar
hambil hambil is offline
 
Join Date: Jun 2004
Location: Seattle
Posts: 1,719
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

HTML Code:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
    <td align="left"><a href="forum.php"><center><img src="http://whoyoureppin.com/images/blizzard/Copy%20of%20misc/vbulletin3_logo_white.gif" border="0" alt="WhoYouReppin" /></center></a></td>
    <td align="right">
        &nbsp;
    </td>
</tr>
</table>
Try removing the empty td
Reply With Quote
  #7  
Old 04-14-2007, 05:34 PM
sinisterpain's Avatar
sinisterpain sinisterpain is offline
 
Join Date: Feb 2006
Location: New Hampshire
Posts: 571
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by imk View Post
the thing is when i disable the side bar, it still isnt correct....maybe i should uninstall it completely?

http://www.whoyoureppin.com/forum.php

ive just uninstalled it but its not ligning up correctly...any ideas?

codes?
This is the HTML I see in your logo placement:
Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
  <td align="left"><a href="forum.php"><center><img src="http://whoyoureppin.com/images/blizzard/Copy%20of%20misc/vbulletin3_logo_white.gif" border="0" alt="WhoYouReppin" /></center></a></td>
  <td align="right">
    &nbsp;
  </td>
</tr>
</table>
<!-- /logo -->
I see alot of html not needed or question why its there for what you are trying to accomplish. This should work as a replacement. Just back up the code before changing it.
Code:
<!-- logo -->
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
  <td align="center"><a href="forum.php"><img src="http://whoyoureppin.com/images/blizzard/Copy%20of%20misc/vbulletin3_logo_white.gif" border="0" alt="WhoYouReppin" /></a>
    </td>
</tr>
</table>
<!-- /logo -->
In your images URL link your using spaces in the folder name which is giving "Copy%20of%20misc"
Reply With Quote
  #8  
Old 04-15-2007, 09:58 AM
imk imk is offline
 
Join Date: Dec 2006
Posts: 809
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

^how do i sort that out?

<!-- logo -->
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><a href="forum.php"><img src="http://whoyoureppin.com/images/blizzard/Copy%20of%20misc/vbulletin3_logo_white.gif" border="0" alt="WhoYouReppin" /></a>
</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

<!-- USC header edit start -->
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
$usc_left
<td valign="top">
<!-- USC header edit end -->

thats the code i have......

solved bloody USC...thanks
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:31 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.10851 seconds
  • Memory Usage 2,238KB
  • Queries Executed 11 (?)
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
  • (1)bbcode_html
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (8)post_thanks_box
  • (8)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (8)post_thanks_postbit_info
  • (8)postbit
  • (8)postbit_onlinestatus
  • (8)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_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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete