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 04-06-2005, 01:39 AM
Joe Blow Joe Blow is offline
 
Join Date: Aug 2004
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How do I do this for my site?

I really like the 'Support the DVD Forums' nav bar at the top of the DVD Forums. It's neat, unobtrusive, a great use of space and really, really useful.

http://www.thedvdforums.com/forums/#

Is it custom code or is it based on a freely available template?

Just wondering if someone out there could point me in the right direction so I can put something like that together for my site.

I'd really appreciate it! Thanks!
Reply With Quote
  #2  
Old 04-06-2005, 02:32 AM
TyleR's Avatar
TyleR TyleR is offline
 
Join Date: Nov 2004
Location: North Carolina
Posts: 349
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

looks like a custom conversion of vB's DHTML dropdown..
Reply With Quote
  #3  
Old 04-06-2005, 07:24 AM
Joe Blow Joe Blow is offline
 
Join Date: Aug 2004
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well it's exactly what I'm looking for.

I've spent the last 12 months building a community and haven't thrown any advertising at them out of respect for the members and the sense of community that I've built. But this is perfect! It's subtle, unobtrusive and gives people the option to support the forums without throwing up garish banners at them.

Unfortunately I'm not a programmer. I'm learning about webmastering as I go but programming is not something I'm good at. I know some regular HTML but that's about it.

I'll be honest. I need to replicate this thing and will pay anyone who can do it for me. I can fill in the links etc, I just need someone who can create the bare bones code for me.

Is there anyone out there who can help me? I can pay by paypal, in advance if something thinks they can knock this together fairly quickly.

If you can, please post in this thread and I'll keep a close eye on it over the next week.

Hoping someone can help.
Reply With Quote
  #4  
Old 04-06-2005, 07:37 AM
lasto lasto is offline
 
Join Date: Jan 2002
Posts: 1,514
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

id just make a DHTML menu dropdown with links to advertiser that you want to advertise.

You will need a program such as Sothink DHTMLMenu to do the menu as its a lot easier but there are free programs on the net to make these sort of menus so use google to find what u need.
Reply With Quote
  #5  
Old 04-06-2005, 08:35 AM
Joe Blow Joe Blow is offline
 
Join Date: Aug 2004
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lasto
id just make a DHTML menu dropdown with links to advertiser that you want to advertise.

You will need a program such as Sothink DHTMLMenu to do the menu as its a lot easier but there are free programs on the net to make these sort of menus so use google to find what u need.
The thing is, I want it exactly the same. Same colours, same amount of links, same look, same everything. I just want to modify the headings and links.

My forum is also unmodified from the forum default (my forum is a financial one; my members don't like change!) so it would suit it perfectly in every way.

I doubt my ability to recreate it as it looks.

:disappointed:
Reply With Quote
  #6  
Old 04-06-2005, 12:30 PM
Jenta Jenta is offline
 
Join Date: Dec 2004
Posts: 377
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

in admin control panel, go to your styles and settings, edit templates
find the one that says navbar

look for
<!-- nav buttons bar -->
copy the code in between these comments into a txt file or something
<!-- / nav buttons bar -->

edit it as you like, replaceing the drops downs with your links and duplicating them as many times as you need to get as many drop downs as you need
paste that code you modified above whats called breadcrumd
that will move it on top....look for this comment in that template
<!-- breadcrumb, login, pm info -->

if you need 2 rows of that navbar area like he has, just do it twice
like...
<!-- nav buttons bar -->
code for top custom navbar
<!-- / nav buttons bar -->
<!-- nav buttons bar -->
code for 2nd row of drop dropdown menus
<!-- / nav buttons bar -->
probably need a <br /> or 2 after this to distance it from the breadcrumb area

if you need to see his exact code, just view source
good luck!
Reply With Quote
  #7  
Old 04-06-2005, 10:00 PM
Joe Blow Joe Blow is offline
 
Join Date: Aug 2004
Posts: 40
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Jenta
in admin control panel, go to your styles and settings, edit templates
find the one that says navbar

look for
<!-- nav buttons bar -->
copy the code in between these comments into a txt file or something
<!-- / nav buttons bar -->

edit it as you like, replaceing the drops downs with your links and duplicating them as many times as you need to get as many drop downs as you need
paste that code you modified above whats called breadcrumd
that will move it on top....look for this comment in that template
<!-- breadcrumb, login, pm info -->

if you need 2 rows of that navbar area like he has, just do it twice
like...
<!-- nav buttons bar -->
code for top custom navbar
<!-- / nav buttons bar -->
<!-- nav buttons bar -->
code for 2nd row of drop dropdown menus
<!-- / nav buttons bar -->
probably need a <br /> or 2 after this to distance it from the breadcrumb area

if you need to see his exact code, just view source
good luck!
Thanks very much for your advice! Will give it a shot tonight and see if I can make it work!

:up:
Reply With Quote
  #8  
Old 04-06-2005, 10:56 PM
kall's Avatar
kall kall is offline
 
Join Date: Apr 2004
Location: New Zealand
Posts: 2,608
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Joe Blow
Thanks very much for your advice! Will give it a shot tonight and see if I can make it work!

:up:
I don't think it's going to be easy to recreate what that site has... this line kinda tells me that:
HTML Code:
<script type="text/javascript" src="ypSlideOutMenus.js"></script>
It doesn't even look like standard vB dhtml. It's a lot more slidey.
Reply With Quote
  #9  
Old 04-07-2005, 01:07 AM
Jenta Jenta is offline
 
Join Date: Dec 2004
Posts: 377
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i dont think he said he wanted an exact duplicate
if so, he can google up some dynamic html slideout effects
Reply With Quote
  #10  
Old 04-07-2005, 04:59 AM
kall's Avatar
kall kall is offline
 
Join Date: Apr 2004
Location: New Zealand
Posts: 2,608
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Joe Blow
The thing is, I want it exactly the same. Same colours, same amount of links, same look, same everything. I just want to modify the headings and links.

My forum is also unmodified from the forum default (my forum is a financial one; my members don't like change!) so it would suit it perfectly in every way.

I doubt my ability to recreate it as it looks.

:disappointed:
Err, looks like he *did* say he wanted an exact duplicate..
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 06:13 PM.


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.04062 seconds
  • Memory Usage 2,261KB
  • 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
  • (1)bbcode_html
  • (4)bbcode_quote
  • (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
  • (10)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_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