vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=230)
-   -   PB-WoW 1.06 World of Warcraft Skin For VB 3.7.x (https://vborg.vbsupport.ru/showthread.php?t=182914)

mmerced 07-09-2008 11:23 PM

Where do I, and what template must I edit to edit the header/announcement area:

Welcome to the New Descendants/PB-WoW forums. If you are not in Descendants Guild or an Allied guild on Gilneas please do not post in the descendants forums or you will be banned. If you need support for PB-WoW skin feel free to post in the appropriate forum. If you need to download it go to the downloads forum. Please feel free to Donate This skin took alot of time to update and that time was being constantly told to get off the computer by the wife LOL but seriously i did take alot of time and effort to update to 3.7.1 and it takes even more time to find small style issues and all the other stuff so please donate and help support this skin.

apokphp 07-10-2008 04:27 AM

Quote:

Originally Posted by zero_ZX (Post 1555897)
How to customize the forum icons:

Go to your /public_html/images/w_forumbullets/
Now you see the images starting with
f<number>

F=forum
<number> = id on the forum

simply just change the numbers to fit into your forums
Same applies for the wow-base-<number>
you use f and the index
and you use wow-base when you are browsing the forums

Please reply if you need further explanation, this is just a short writting guide.

What template is this found in?


Tuaguild, first off...what a terrific skin! By far, the best out there for WoW. I'm very impressed and plan to use this skin for my guild. That being said, what about .psd files for certain graphics so the site can be customized with the clan's name vs having to look identical to Blizzard's site? It's a great skin...but a site should represent the clan/guild...not the software company IMO.

rarehabbo 07-10-2008 03:44 PM

This skin is very buggy also could you make the missing images in the packages thanks.

mick4lou 07-10-2008 06:39 PM

Looks good :)

tuaguild 07-10-2008 08:09 PM

Sorry guys i did not make this skin i just updated it at rarehabbo
Quote:

How to customize the forum icons:

Go to your /public_html/images/w_forumbullets/
Now you see the images starting with
f<number>

F=forum
<number> = id on the forum

simply just change the numbers to fit into your forums
Same applies for the wow-base-<number>
you use f and the index
and you use wow-base when you are browsing the forums

Please reply if you need further explanation, this is just a short writting guide.
also here are the missing style switcher images and please before you post support here please post it in the official pb-wow for vbulletin support forums at descendantshq.org

murdoc 07-17-2008 05:02 PM

is there a way, just to have the skins and not the plug ins as my forums accommodate other games as well

tuaguild 07-17-2008 07:25 PM

the plugins are well required for the skin to operate properly sorry

apokphp 07-19-2008 02:29 AM

Great style for what it is, a Blizzard WoW forum clone...but for guild board...one that wants to have their own customization that represents their guild...it doesn't work IMO. Without the .psd files, customization (eg...header, replacing the "Blizz" blue graphic for admins with the guild's graphic) can't happen unless you have some serious graphic design skill and some time. Thus, it renders this style unusable for my guild unfortunately.

Awesome looking skin...the best I've seen for any vb site with a wow theme...just not appropriate for an actual wow guild.

DJRavine 07-27-2008 04:11 AM

hey all...

here is a quick fix to stop that annoying navbar resize for FireFox...
mind you it will set the width of the div on load...
so it will have a small bug when u resize it..
but then when u load a new page it will resize it to the new browser width..

Open your AdminCP and go here...
Quote:

Styles & Templates > Style Manager > PB-WoW > Edit Templates > header
Now you have to add 2 sections of code...
This will make a new div to be just under the width of the browser window...
Kinda flooding the rest of the space..
To fake it to look like the table is the complete width of the screen...

use the following to help you...


FIND THIS:
Code:

<!--[if IE]>
                            <span style="position: relative; z-index: 20000; background: none;">
                            <![endif]-->
                            <small class="subnavfix" style="color:#808080; letter-spacing:normal;">

PASTE AFTER:
Code:

        <!--  FIREFOX FIX BY DJRAVINE @ WOWPS.ORG  -->
        <script language="JavaScript"><!--
        //change DIV tag width dynamically

        var viewportwidth;
        var viewportheight;
 
        // the more standards compliant browsers (mozilla/netscape/opera/IE7) use window.innerWidth and window.innerHeight
 
        if (typeof window.innerWidth != 'undefined')
        {
              viewportwidth = window.innerWidth,
              viewportheight = window.innerHeight
        }
 
        // IE6 in standards compliant mode (i.e. with a valid doctype as the first line in the document)

        else if (typeof document.documentElement != 'undefined'
            && typeof document.documentElement.clientWidth !=
            'undefined' && document.documentElement.clientWidth != 0)
        {
              viewportwidth = document.documentElement.clientWidth,
              viewportheight = document.documentElement.clientHeight
        }
 
        // older versions of IE
 
        else
        {
              viewportwidth = document.getElementsByTagName('body')[0].clientWidth,
              viewportheight = document.getElementsByTagName('body')[0].clientHeight
        }

        var current_URL = location.href;
        var current_Page = current_URL.substring(39,46);
        if (
            (current_Page === "forumdisplay.p") ||
            (current_Page === "search.php") ||
            (current_Page === "search.php?do=") ||
            (current_Page === "search.php?sea") ||
            (current_Page === "showgroups.php") ||
            (current_Page === "online.php?do=") ||
            (current_Page === "faq.php") ) { 

            divWidth = viewportwidth - 165;
        } else {
            divWidth = viewportwidth - 180;
        }

        document.write ('<div id="NavbarFixer" style="width: ' + divWidth + 'px;">');
        //--></script>
        <!--  FIREFOX FIX BY DJRAVINE @ WOWPS.ORG  -->

FIND THIS:
Code:

 
        <if condition="$show['member']">
            | <a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out()">$vbphrase[log_out]</a>
        </if>

PASTE AFTER:
Code:

        <!--  FIREFOX FIX BY DJRAVINE @ WOWPS.ORG  -->
        </div>
        <!--  FIREFOX FIX BY DJRAVINE @ WOWPS.ORG  -->

i hope this is useful to you...
as it was annoying me for a while...
seeing im an avid firefox 3 supporter...
took me a day to track down the right info to code it...

if you need any help with this fix..
xFire - theDJRavine
MSN - DJRavine@WoWps.org

Have fun all and dont work too hard...
Ciao all, DJRavine...

DJRavine 07-27-2008 11:41 AM

also...
has any one found a fix for the poll voting..

Quote:

Invalid Action Specified
you can post a poll fine..
but when u try to vote on it..
you get the error message above..


All times are GMT. The time now is 12:02 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.01180 seconds
  • Memory Usage 1,756KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete