Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
  #1  
Old 09-01-2008, 03:39 PM
GDA GDA is offline
 
Join Date: Feb 2005
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default What Hack is this? - Looks Great!

Hi,

I was wondering how I could achieve these forum styles:

http://forum.notebookreview.com/

or

http://forums.slickdeals.net/?styleid=17


Are these any certain hacks which you can see they are using?
Reply With Quote
  #2  
Old 09-01-2008, 03:52 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What is it I'm supposed to be seeing? They just look like standard vb boards. Or are you talking about the colors? The CSS?
Reply With Quote
  #3  
Old 09-01-2008, 04:17 PM
GDA GDA is offline
 
Join Date: Feb 2005
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm talking about the design, style and css - and also hacks.

In Example one:

How do they achieve the tabbed layout and also how do they achieve the "Latest Laptop Discussion" section? I also would like to know how they achieve the whole "compact" look with everything kept in a container?

Thank-You
Reply With Quote
  #4  
Old 09-01-2008, 04:23 PM
AdrianH AdrianH is offline
 
Join Date: Sep 2007
Posts: 222
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Why don't you ask the owner of the site?

Looking at the style chooser the style is listed as their own so they either coded the template themselves or bought a design from a template coder.

The side columns are just a part of the design, there are many vB skins available in similar designs and there is a side columns hack available here at vB.org if you prefer to use that with your own skin.
Reply With Quote
  #5  
Old 09-01-2008, 04:26 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do a search on "left" "all mods" "titles only" and you'll get mods like this - Simple Left Side Column Blocks on ForumHome There are others, too.

There are also mods for second navbars.

A lot of this stuff you can figure out by just viewing the source in the page. If you look at the source, you'll see the top tabs are in a div with the id "sitetabContainer". Then just look at their css file (style.css) and you see this:
Code:
#sitetabContainer {position: absolute; left: 50%; top: 3px;    margin-left: -340px; width: 680px; height: 30px;}
#sitetabContainer a {display: block;float: left;margin-top: 6px;margin-right: 1px;background: url(/images/bg_sitetab.gif) no-repeat;width: 128px;height: 24px;text-align: center;font-size: 9px;font-weight: bold;color: #000;line-height: 22px;text-decoration: none;}
#sitetabContainer a:hover {background: url(/images/bg_sitetab.gif) 0 -24px no-repeat;text-decoration: none;}
#sitetabContainer a.on {display: block;float: left;background: url(/images/bg_sitetab_on.gif) no-repeat;width: 140px;height: 30px;margin-top: 1px;margin-right: 1px;text-align: center;font-size: 9px;font-weight: bold;color: #FFF;line-height: 28px;text-decoration: none;}
#sitetabContainer a.on:hover {background: url(/images/bg_sitetab_on.gif) no-repeat;text-decoration: none;}
Reply With Quote
  #6  
Old 09-01-2008, 04:47 PM
GDA GDA is offline
 
Join Date: Feb 2005
Posts: 58
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lynne View Post
Do a search on "left" "all mods" "titles only" and you'll get mods like this - Simple Left Side Column Blocks on ForumHome There are others, too.

There are also mods for second navbars.

A lot of this stuff you can figure out by just viewing the source in the page. If you look at the source, you'll see the top tabs are in a div with the id "sitetabContainer". Then just look at their css file (style.css) and you see this:
Code:
#sitetabContainer {position: absolute; left: 50%; top: 3px;    margin-left: -340px; width: 680px; height: 30px;}
#sitetabContainer a {display: block;float: left;margin-top: 6px;margin-right: 1px;background: url(/images/bg_sitetab.gif) no-repeat;width: 128px;height: 24px;text-align: center;font-size: 9px;font-weight: bold;color: #000;line-height: 22px;text-decoration: none;}
#sitetabContainer a:hover {background: url(/images/bg_sitetab.gif) 0 -24px no-repeat;text-decoration: none;}
#sitetabContainer a.on {display: block;float: left;background: url(/images/bg_sitetab_on.gif) no-repeat;width: 140px;height: 30px;margin-top: 1px;margin-right: 1px;text-align: center;font-size: 9px;font-weight: bold;color: #FFF;line-height: 28px;text-decoration: none;}
#sitetabContainer a.on:hover {background: url(/images/bg_sitetab_on.gif) no-repeat;text-decoration: none;}
Thanks for the help - appreciate it!

Do you know how they do the latest discussions feed?
Reply With Quote
  #7  
Old 09-01-2008, 05:12 PM
Konstantinos Konstantinos is offline
 
Join Date: Apr 2006
Posts: 443
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

the increase/decrease skin font is cool. whats the hack for it ?
Reply With Quote
  #8  
Old 09-01-2008, 05:27 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by GDA View Post
Do you know how they do the latest discussions feed?
There are several ways to get the latest threads/posts. Do a search in the articles here and on vb.com in the Tips and Tricks forum (or whatever it's called) and you'll see different ways to do that.
Reply With Quote
Reply

Thread Tools
Display Modes

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 08:24 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.04591 seconds
  • Memory Usage 2,223KB
  • 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
  • (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