vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=230)
-   -   Clean Blue (https://vborg.vbsupport.ru/showthread.php?t=171410)

HaYLaZ 05-25-2008 01:22 PM

Quote:

Originally Posted by pewa (Post 1529847)
Is it possible to add som distance above the header?

See picture

You can add table or div codes above the first header table.

Open header template and find;

Code:

<a name="top"></a>
Add your codes above

Example spacer code:

Code:

<div style="padding-top:10px;"></div>
Quote:

Originally Posted by akee (Post 1529861)
i have a little problem with this theme. when i want logout, i see this popup window: undefined.
can you solved this problem?

open header template and find;

Code:

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

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

Quote:

Originally Posted by maidos (Post 1530733)
u said this

For changing background change the background color section at body section

but i wish to add gradient background color, how can that be done

at main css body section bakcground color section add this;

#color code url(image url/yourimage.gif) repeat-x

Quote:

Originally Posted by Sym0n (Post 1530797)
HaYLaZ - I've installed this style onto a site I'm currently building and it's perfect but I do have one question which I'm hoping you can help with, can't find the answer via search.

I've got a couple of addons which add additional links to the navbar. I've put them back on using your advice but one of these is a drop down menu, for the Donation System LITE Add-On by AWJunkies, and I can't for the life of me figure out how to change the Donation link, as shown on the attachment below, from a singular link to a drop down, like you have used on the Search link.

Can you explain how I can do it please?

Thanks for any help,

Sy

Can you add here you menu codes

Sym0n 05-25-2008 03:17 PM

Quote:

Originally Posted by HaYLaZ (Post 1530930)
Can you add here you menu codes

I actually linked you to the wrong (old) version of the addon I'm using. Should of been https://vborg.vbsupport.ru/showthread.php?t=177437 which is v0.2.1 of AWCoding- Donation System.

Anywho. As I'm a VB n00b I've currently butchered the header template, as you'll see below, to crudely include a link through to the forum rules (https://vborg.vbsupport.ru/showthread.php?t=177559) addon and also for the donations link.

Code:

<div class="nvlink" align="center">
<if condition="$show['member']"><a href="usercp.php$session[sessionurl_q]" >$vbphrase[user_cp]</a></if>
<if condition="$show['registerbutton']"><a href="register.php$session[sessionurl_q]" rel="nofollow" >$vbphrase[register]</a></if>
<a href="misc.php?do=cfrules" >Forum Rules</a>
<a href="faq.php$session[sessionurl_q]" accesskey="5" >$vbphrase[faq]</a>
/<a href="awc_dsl.php?do=edit&e[global][dsl_bar_link]" >$vbphrase[setting_dsl_bar_link]</a>
<if condition="$vboptions['enablememberlist']"><a href="memberlist.php$session[sessionurl_q]" >$vbphrase[members_list]</a></if>
<if condition="$show['popups']"><if condition="$show['member']">
<a href="search.php?$session[sessionurl]do=getnew" accesskey="2" >$vbphrase[new_posts_nav]</a><else />
<a href="search.php?$session[sessionurl]do=getdaily" accesskey="2" >$vbphrase[todays_posts]</a></if>
<a id="navbar_search" href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow" >$vbphrase[search]</a>
<if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search",true); </script></if></if>
<a href="calendar.php$session[sessionurl_q]" >$vbphrase[calendar]</a>
<a href="arcade.php?$session[sessionurl_q]">Arcade</a>
<if condition="$show['member']"><a id="usercptools" href="$show[nojs_link]#usercptools" >$vbphrase[quick_links]</a><script type="text/javascript"> vbmenu_register("usercptools",true);</script>
</if>
<if condition="$show['member']"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')" >$vbphrase[log_out]</a></if>
</div>

On the default skin the Donations drop down menu has two links.
Donate Now - /forum/awc_dsl.php?do=donation
Donation List (usergroup specific) - /forum/awc_dsl.php?do=list

I've tried to figure out what VB phrases are and how they work but I've still no idea, but if they are required to make this work correctly I'm sure AWJunkies would be able to tell me.

Just had a thought that this, from the actual addon settings menu might mean something to you. I've tried adding the variables as instructed but it messes up all the formatting, although the link works how it should lol.

Quote:

Automatically add donation page link to NavBar which creates a drop down menu
If you select NO the variables to add manually to your header/navbar templates are:
Put this where you would like it to appear on your navbar/header
$dsl_link_menu
Find NAVBAR POPUP MENUS in header/navbar template and add this below it:
$dsl_link_menu_options
Thanks for any help,

Sy

pushedx 05-26-2008 12:17 AM

Looks great, thanks :)

HaYLaZ 05-26-2008 10:05 AM

Quote:

Originally Posted by Sym0n (Post 1530997)
I actually linked you to the wrong (old) version of the addon I'm using. Should of been https://vborg.vbsupport.ru/showthread.php?t=177437 which is v0.2.1 of AWCoding- Donation System.

Anywho. As I'm a VB n00b I've currently butchered the header template, as you'll see below, to crudely include a link through to the forum rules (https://vborg.vbsupport.ru/showthread.php?t=177559) addon and also for the donations link.

Code:

<div class="nvlink" align="center">
<if condition="$show['member']"><a href="usercp.php$session[sessionurl_q]" >$vbphrase[user_cp]</a></if>
<if condition="$show['registerbutton']"><a href="register.php$session[sessionurl_q]" rel="nofollow" >$vbphrase[register]</a></if>
<a href="misc.php?do=cfrules" >Forum Rules</a>
<a href="faq.php$session[sessionurl_q]" accesskey="5" >$vbphrase[faq]</a>
/<a href="awc_dsl.php?do=edit&e[global][dsl_bar_link]" >$vbphrase[setting_dsl_bar_link]</a>
<if condition="$vboptions['enablememberlist']"><a href="memberlist.php$session[sessionurl_q]" >$vbphrase[members_list]</a></if>
<if condition="$show['popups']"><if condition="$show['member']">
<a href="search.php?$session[sessionurl]do=getnew" accesskey="2" >$vbphrase[new_posts_nav]</a><else />
<a href="search.php?$session[sessionurl]do=getdaily" accesskey="2" >$vbphrase[todays_posts]</a></if>
<a id="navbar_search" href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow" >$vbphrase[search]</a>
<if condition="$show['quicksearch']"><script type="text/javascript"> vbmenu_register("navbar_search",true); </script></if></if>
<a href="calendar.php$session[sessionurl_q]" >$vbphrase[calendar]</a>
<a href="arcade.php?$session[sessionurl_q]">Arcade</a>
<if condition="$show['member']"><a id="usercptools" href="$show[nojs_link]#usercptools" >$vbphrase[quick_links]</a><script type="text/javascript"> vbmenu_register("usercptools",true);</script>
</if>
<if condition="$show['member']"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onclick="return log_out('$vbphrase[sure_you_want_to_log_out]')" >$vbphrase[log_out]</a></if>
</div>

On the default skin the Donations drop down menu has two links.
Donate Now - /forum/awc_dsl.php?do=donation
Donation List (usergroup specific) - /forum/awc_dsl.php?do=list

I've tried to figure out what VB phrases are and how they work but I've still no idea, but if they are required to make this work correctly I'm sure AWJunkies would be able to tell me.

Just had a thought that this, from the actual addon settings menu might mean something to you. I've tried adding the variables as instructed but it messes up all the formatting, although the link works how it should lol.



Thanks for any help,

Sy

Open header template and find:

Code:

<div class="nvlink" align="center">
Below Add:

Code:

$dsl_link_menu
open navbar template and find:

Code:

<!-- / NAVBAR POPUP MENUS -->
Below Add:

Code:

$dsl_link_menu_options
This must be Work

Sym0n 05-27-2008 06:24 AM

Thanks anyway HayYLaZ, that code from AWJunkies does work but unfortunately, as above, it messes up the formatting due to your style using the header template to contain the navbar.

But not to worry AWJunkies has kindly offered to help integrate it for me so no loss :).

Thanks,

Sy

CloneVince 05-28-2008 04:07 AM

As the 3.7.1 version is out, will you update the style ?

Thx for your work :)

leanh 05-28-2008 10:07 AM

vEry Good

cillianok 05-28-2008 02:48 PM

Hey, nice skin! How do I edit the navbar links in it? Basically I just want to add the Arcade link. the instructions are:



In this navbar-Template search for:
PHP Code:

<td class="vbmenu_control"><a href="calendar.php$session[sessionurl_q]">$vbphrase[calendar]</a></td

Below add:
PHP Code:

<td class="vbmenu_control"><a href="arcade.php?$session[sessionurl_q]">Arcade</a></td


But obviously the skin alters the code =p

steve1966 05-28-2008 04:37 PM

@ cillianok


This code was given to me by stangger5 and its working ok

In the header look for,,
Code:

<a href="calendar.php" >Calendar</a>
add this before it..
Code:

<a href="arcade.php?$session[sessionurl_q]">Arcade</a>

Senzuri 05-29-2008 01:56 PM

Quote:

Originally Posted by CloneVince (Post 1533692)
As the 3.7.1 version is out, will you update the style ?

Thx for your work :)

Yeah I too would like to see an updated version. A truly great skin!


All times are GMT. The time now is 02:25 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.01547 seconds
  • Memory Usage 1,793KB
  • 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
  • (12)bbcode_code_printable
  • (2)bbcode_php_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (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