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

Reply
 
Thread Tools Display Modes
  #1  
Old 10-25-2008, 08:02 AM
e-power e-power is offline
 
Join Date: Oct 2008
Location: Scotland
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Getting the header image " Centerd "

As title how do i go about getting the header image in center of page.
Thanks
Reply With Quote
  #2  
Old 10-25-2008, 10:56 AM
misuzuu misuzuu is offline
 
Join Date: May 2007
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So you want your banner to be centered?
Reply With Quote
  #3  
Old 10-25-2008, 11:03 AM
e-power e-power is offline
 
Join Date: Oct 2008
Location: Scotland
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

yes .. im running non standard theme where the header txt is already altered i tryed using the tut found on here but just messes the header more
Reply With Quote
  #4  
Old 10-25-2008, 01:43 PM
misuzuu misuzuu is offline
 
Join Date: May 2007
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

could you give us the code and a screen shot or something ?
it can help maybe if you just add <center> on the code where the img is located, but would be the simplest way
Reply With Quote
  #5  
Old 10-25-2008, 04:32 PM
e-power e-power is offline
 
Join Date: Oct 2008
Location: Scotland
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
<!-- logo -->
<a name="top"></a>
<table width="$stylevar[outertablewidth]" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height="24" colspan="2" class="header_top"></td>
  </tr>
</table>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="$stylevar[left]" class="logo_bg"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td width="100%" align="$stylevar[left]" valign="bottom" class="logo_bg" id="header_right_cell"><if condition="THIS_SCRIPT == 'adv_index'"><div id="menu_forums"><a href="$vboptions[bburl]/"></a></div><else /><div id="menu_home"><a href="$vboptions[homeurl]/"></a></div></if><if condition="$vbulletin->products['vbprojecttools']"><div id="menu_projects"><a href="$vboptions[bburl]/project.php"></a></div></if><if condition="$vbulletin->products['vbblog']"><div id="menu_blog"><a id="vbbloglinks" href="$show[nojs_link]#blogs" accesskey="3"></a> <script type="text/javascript"> vbmenu_register("vbbloglinks",1); </script></div></if><if condition="$show['registerbutton']"> <div id="menu_register"><a href="$vboptions[bburl]/register.php"></a></div></if><if condition="$show['member']"><div id="menu_login"><a href="$vboptions[bburl]/login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"></a></div></if></td>
</tr>
<tr>
        <td height="15" colspan="2" class="header_sub"></td>
  </tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]
Reply With Quote
  #6  
Old 10-26-2008, 10:54 AM
misuzuu misuzuu is offline
 
Join Date: May 2007
Posts: 43
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Code:
<!-- logo -->
<a name="top"></a>
<table width="$stylevar[outertablewidth]" border="0" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td height="24" colspan="2" class="header_top"></td>
  </tr>
</table>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="center" class="logo_bg"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td width="100%" align="$stylevar[left]" valign="bottom" class="logo_bg" id="header_right_cell"><if condition="THIS_SCRIPT == 'adv_index'"><div id="menu_forums"><a href="$vboptions[bburl]/"></a></div><else /><div id="menu_home"><a href="$vboptions[homeurl]/"></a></div></if><if condition="$vbulletin->products['vbprojecttools']"><div id="menu_projects"><a href="$vboptions[bburl]/project.php"></a></div></if><if condition="$vbulletin->products['vbblog']"><div id="menu_blog"><a id="vbbloglinks" href="$show[nojs_link]#blogs" accesskey="3"></a> <script type="text/javascript"> vbmenu_register("vbbloglinks",1); </script></div></if><if condition="$show['registerbutton']"> <div id="menu_register"><a href="$vboptions[bburl]/register.php"></a></div></if><if condition="$show['member']"><div id="menu_login"><a href="$vboptions[bburl]/login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')"></a></div></if></td>
</tr>
<tr>
        <td height="15" colspan="2" class="header_sub"></td>
  </tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]

see if that works for you
Reply With Quote
  #7  
Old 10-27-2008, 06:38 PM
e-power e-power is offline
 
Join Date: Oct 2008
Location: Scotland
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Alright bud just got round to trying it didnt work
Reply With Quote
  #8  
Old 10-27-2008, 06:59 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A link to your site where it isn't working may help. (If it's the site in your profile, then it looks centered to me.)
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 09:55 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.12132 seconds
  • Memory Usage 2,233KB
  • 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)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