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-18-2008 01:24 PM

Quote:

Originally Posted by imranbaig (Post 1523169)
Hi thanks again, can I use only buttons? and Status icons??

yes you can;)

Quote:

Originally Posted by maidos (Post 1523479)
thanks, but can you be little bit more descriptive? like where do i change the fonts on forum category, subcategory name, forum title name ?

also what about adding gradient background on the forum main page instead of having greyish bg? how can that be done

thanks

admincp>>styles & templates>>clean blue>>main css

For changing background change the background color section at body section

For changing the fonts you must change all Font Types at main css what you want

For changing forum titles font size you must change stripe categories section font size.

pewa 05-18-2008 04:34 PM

HaYLaZ, how can I fix the error with two search buttons without using the new xml file?

I have made changes to colors, font etc. will I loose all that if I upload a new xml file?

treyb 05-19-2008 12:16 AM

scott pruett : how did you ad the sidebar? please help, anyone?

HaYLaZ 05-19-2008 08:43 AM

Quote:

Originally Posted by pewa (Post 1523754)
HaYLaZ, how can I fix the error with two search buttons without using the new xml file?

I have made changes to colors, font etc. will I loose all that if I upload a new xml file?

Just change nav buttons in header with below;
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="faq.php$session[sessionurl_q]" accesskey="5" >$vbphrase[faq]</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>
<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>

Quote:

Originally Posted by treyb (Post 1524227)
scott pruett : how did you ad the sidebar? please help, anyone?

Sidebars can be add with many ways (navbar,forumhome etc)

you can find adding sidebar modifications at template modifications section. I didnt add any sidebar to clean blue template. You must add yourself with searching necessary template modification.

pewa 05-19-2008 03:28 PM

Thanks HaYLaZ!

pewa 05-24-2008 09:25 AM

Is it possible to add som distance above the header?

See picture

akee 05-24-2008 09:40 AM

i have a little problem with this theme. when i want logout, i see this popup window: undefined.
can you solved this problem?

Dragon Company 05-24-2008 01:09 PM

Beautiful :)

maidos 05-25-2008 08:27 AM

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

Sym0n 05-25-2008 10:16 AM

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

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!

hima85222 05-29-2008 02:31 PM

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

Skierpetros 05-29-2008 04:29 PM

when you will update to 3.7.1?

Kinneas 05-30-2008 01:06 PM

Brilliant Style as I've said before, still using it and have no intention of changing it :)

Just thought I'd bring a couple of bugs to your attention.

In navbar, your Welcome phrase doesn't have a link to the URL for your username, which was a change done in 3.7.

To fix this, in navbar, find:
Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />

Replace with:
Code:

<strong><phrase 1="$bbuserinfo[username]" 2="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[welcome_x_link_y]</phrase></strong><br />

Also, in FORUMHOME, the collapse button for "Who's Online" is wrong, and collapses the "Upcoming Events" bit instead.

To fix this, in FORUMHOME, find:
Code:

                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
                        <a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
                </td>


Replace with:
Code:

                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
                        <a href="online.php$session[sessionurl_q]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
                </td>


Once again, thanks for this fantastic style :)

HaYLaZ 05-30-2008 02:30 PM

Quote:

Originally Posted by Kinneas (Post 1536208)
Brilliant Style as I've said before, still using it and have no intention of changing it :)

Just thought I'd bring a couple of bugs to your attention.

In navbar, your Welcome phrase doesn't have a link to the URL for your username, which was a change done in 3.7.

To fix this, in navbar, find:
Code:

<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />

Replace with:
Code:

<strong><phrase 1="$bbuserinfo[username]" 2="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[welcome_x_link_y]</phrase></strong><br />

Also, in FORUMHOME, the collapse button for "Who's Online" is wrong, and collapses the "Upcoming Events" bit instead.

To fix this, in FORUMHOME, find:
Code:

                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_events')"><img id="collapseimg_forumhome_events" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_events].gif" alt="" border="0" /></a>
                        <a href="online.php$session[sessionurl_q]" rel="nofollow">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
                </td>


Replace with:
Code:

                <td class="thead" colspan="2">
                        <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_activeusers')"><img id="collapseimg_forumhome_activeusers" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_forumhome_activeusers].gif" alt="" border="0" /></a>
                        <a href="online.php$session[sessionurl_q]">$vbphrase[currently_active_users]</a>: $totalonline (<phrase 1="$numberregistered" 2="$numberguest">$vbphrase[x_members_and_y_guests]</phrase>)
                </td>


Once again, thanks for this fantastic style :)


Thanks for your help reply.

As soon as possible I will update style for vbulletin 371 version.

Skierpetros 05-30-2008 03:22 PM

now what i do to make the template work with 3.7.1 without losing my modifications on it?

PHILIPS-08 05-30-2008 04:16 PM

http://i30.tinypic.com/1zqslsm.gif

after i install this style i got my forum like this http://i30.tinypic.com/1zqslsm.gif

please any one tell me how to fix that thanx in advance

PHILIPS-08 05-31-2008 09:05 AM

any one

hima85222 06-01-2008 09:51 AM

will you update the style

HaYLaZ 06-01-2008 08:41 PM

Quote:

Originally Posted by Skierpetros (Post 1536319)
now what i do to make the template work with 3.7.1 without losing my modifications on it?

Yes you can. Because ı will write here upgraded xml and codes for manual upgrade.

Quote:

Originally Posted by PHILIPS-08 (Post 1536366)
http://i30.tinypic.com/1zqslsm.gif

after i install this style i got my forum like this http://i30.tinypic.com/1zqslsm.gif

please any one tell me how to fix that thanx in advance

Which version are you using?

Quote:

Originally Posted by hima85222 (Post 1537685)
will you update the style

As soon as possible may be tomorrow

Sym0n 06-02-2008 03:17 PM

Quote:

Originally Posted by HaYLaZ (Post 1514890)
styles&templates>cleanblue>main css customize hover sections your choice (underline or none) you can change link color too

HaYLaZ, I've followed your directions for changing the colour of links, as above, but this is changing all links on the entire forum. What I'd like to do is just have the links within threads a different colour and underlined. Is there anyway to achieve this?

Thanks

Sy

HaYLaZ 06-02-2008 08:19 PM

Style pack updated to Vbulletin 3.7.1 Version.

If you are new on this style read installation instroductions.

If you want to upgrade without losing your modifications make forumhome modification which told at first message.

ALil'Hope 06-02-2008 10:58 PM

Thanks for the update, Installed.

Skierpetros 06-03-2008 09:02 AM

Quote:

Originally Posted by HaYLaZ (Post 1538145)
Yes you can. Because ı will write here upgraded xml and codes for manual upgrade.



Which version are you using?



As soon as possible may be tomorrow

thx you are the best!

steve1966 06-03-2008 10:58 AM

thanks for the update

Say3 06-04-2008 06:59 AM

updated ....

jlew24asu 06-05-2008 04:36 PM

how do I fix this?

https://vborg.vbsupport.ru/external/2008/06/42.jpg

HaYLaZ 06-06-2008 10:56 AM

Which Version are you using?

jlew24asu 06-06-2008 11:07 AM

fixed. vbull - 3.7

jlew24asu 06-06-2008 01:44 PM

I just tried fluid and got the same result.

is this what you meant by version?

HaYLaZ 06-06-2008 05:16 PM

Are you using any other mods exapmle sun forum arranger etc?

Because anybody never took this error before.


All times are GMT. The time now is 12:37 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.01878 seconds
  • Memory Usage 1,897KB
  • 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
  • (21)bbcode_code_printable
  • (2)bbcode_php_printable
  • (18)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
  • (40)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