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 08-15-2009, 05:44 PM
crazymilk's Avatar
crazymilk crazymilk is offline
 
Join Date: Aug 2008
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Header help

For the header i`ve got i image the i want left i have a matching image for the end which i want to repeat 100% of the forums how do i repeat in the header?
Reply With Quote
  #2  
Old 08-15-2009, 06:09 PM
vB Tree vB Tree is offline
 
Join Date: Dec 2008
Location: England
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Could you provide a diagram or try to describe what you are trying to do again? I'm not exactly sure what you are asking for.
Reply With Quote
  #3  
Old 08-15-2009, 06:49 PM
crazymilk's Avatar
crazymilk crazymilk is offline
 
Join Date: Aug 2008
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I want this image to the left



And this image to repeat from the end of the first image the whole width of the header




what would be the header code?
Reply With Quote
  #4  
Old 08-15-2009, 07:00 PM
vB Tree vB Tree is offline
 
Join Date: Dec 2008
Location: England
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Centralised logo with repeat on either side.

Okay then. If assuming you have nothing else extra in your header, you will be looking to end up with something like this:

Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td class="logofluid">&nbsp;</td>
	<td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td class="logofluid">&nbsp;</td>

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

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]
And add this to additional css:

HTML Code:
.logofluid { background: #COLOURCODE url(IMAGELOCATION.gif repeat-x; width: 50%; }
Hope this makes sense, if not, reply here and send me a PM to notify me that you have replied.


Logo on the left and repeating image on the right.

I have not tested this code so let me know if it doesn't work:

Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="left"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td class="logofluid">&nbsp;</td>

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

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]
And add this to additional css:

Code:
.logofluid { background: #COLOURCODE url(IMAGELOCATION.gif repeat-x; width: 100%; }
I think this should do it, if not, I'll try making one on localhost.
Reply With Quote
  #5  
Old 08-15-2009, 07:08 PM
crazymilk's Avatar
crazymilk crazymilk is offline
 
Join Date: Aug 2008
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for nice logo

I added your code and now i just get the vbulletin logo in the middle?

And thanks for all your help

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

if i give you the images path would that help?
Reply With Quote
  #6  
Old 08-15-2009, 07:14 PM
vB Tree vB Tree is offline
 
Join Date: Dec 2008
Location: England
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Did you use the first or second version of the code. It might be easier for me to help you over live chat. If you have MSN and want to speak to me there instead. PM me your email.

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

If you give me the image path, I will customise the code for you.
Reply With Quote
  #7  
Old 08-15-2009, 07:19 PM
crazymilk's Avatar
crazymilk crazymilk is offline
 
Join Date: Aug 2008
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I put this in is it wrong?

<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
<td class="logofluid">&nbsp;</td>
<td align="center"><a href=http://www.blackops-squad.com/maxjay/7_01.jpg"$vboptions[forumhome].php$session[sessionurl_q]"><img src=http://www.blackops-squad.com/maxjay/7_01.jpg"$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
<td class="logofluid">&nbsp;</td>

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

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]

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

And this for extra css

.logofluid { background: #COLOURCODE url(maxjay/line.png repeat-x; width: 50%; }
Reply With Quote
  #8  
Old 08-15-2009, 07:26 PM
vB Tree vB Tree is offline
 
Join Date: Dec 2008
Location: England
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, I posted a second version of code up when I re-read what you wanted to do.

Replace it with this:

HTML Code:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center">
<tr>
	<td align="left"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
	<td class="logofluid">&nbsp;</td>

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

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]
And this:

HTML Code:
.logofluid { background: #0c0c0c url(maxjay/line.png repeat-x; width: 100%; }
Also, could you edit your last post and put code or html tags around the code sections.

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

This issue it now resolved. It is due to a missing close bracket in the css.

Reply With Quote
  #9  
Old 01-29-2010, 07:39 AM
crazymilk's Avatar
crazymilk crazymilk is offline
 
Join Date: Aug 2008
Posts: 110
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Me again having trouble with header.

I want to put a right and left banner with a fliud bit in the middle how would i do this?

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

This issue is now resolved.

Forums banner Link here

See what you all think
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 07:14 AM.


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.03967 seconds
  • Memory Usage 2,249KB
  • 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
  • (3)bbcode_code
  • (3)bbcode_html
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (9)postbit
  • (9)postbit_onlinestatus
  • (9)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