PDA

View Full Version : Clean Blue


Pages : 1 [2]

HaYLaZ
06-28-2008, 08:31 AM
3.7.1 between 3.7.2 template changes for Clean Blue Template:

Open navbar template and find;

<if condition="$show['notifications']">

Replace with:

<if condition="$show['notifications'] AND $show['popups']">

Open forumhome template and find:

<thead>
<tr>
<td class="tcat" colspan="2">$vbphrase[whats_going_on]</td>
</tr>
</thead>

add below:

$template_hook[forumhome_wgo_pos1]

Find:

<!-- end logged-in users -->
</if>

Add below:

$template_hook[forumhome_wgo_pos2]

Find:

<div><phrase 1="member.php?$session[sessionurl]u=$newuserid" 2="$newusername">$vbphrase[welcome_to_our_newest_member_x]</phrase></div>

Add below:

$template_hook[forumhome_wgo_stats]

Find:

</tbody>

Add below:

$template_hook[forumhome_wgo_pos3]

Find:

</tbody>
<!-- end today's birthdays -->
</if>

Add below:

$template_hook[forumhome_wgo_pos4]


Open footer template and find:

<if condition="$vboptions['archiveenabled']"><a href="archive/index.php">$vbphrase[archive]</a> -</if>

Add below:

$template_hook[footer_links]

Open forumdisplay template and find:

<div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div>
<div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div>
<div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div>
<div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div>

REplace with below:


<if condition="$show['post_queue']"><div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div></if>
<if condition="$show['attachment_queue']"><div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div></if>
<if condition="$show['mass_move']"><div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div></if>
<if condition="$show['mass_prune']"><div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div></if>

Open showthread template and find:

<input type="hidden" name="p" value="$qrpostid" id="qr_postid" />

Add below:

<input type="hidden" name="specifiedpost" value="0" id="qr_specifiedpost" />

CloneVince
06-28-2008, 08:49 AM
Thx a lot :)

infinityloop
06-28-2008, 10:22 AM
thanks!

i think there is a small error in the "Open forumdisplay template and find:" Step
in the replacecode you insert the "if" which is allready there again. :)

HaYLaZ
06-28-2008, 03:25 PM
thanks!

i think there is a small error in the "Open forumdisplay template and find:" Step
in the replacecode you insert the "if" which is allready there again. :)

These codes for who are using clean blue for vbulletin 3.7.1 (not upgraded version)

So ıf you are using 3.7.2 the codes are that I gave already defined in vbulletin 3.7.2 version.

Mr. Hoddz
06-28-2008, 07:56 PM
How can I update and not loss any of my modifications on this style? Is it at all possible? Got heavily modified postbit templates, and I don't want to lost it but it does need to be changed a little after the update.

Thanks.

Sym0n
06-29-2008, 06:27 AM
forumhome template and find:
Find:

</tbody>Add below:

$template_hook[forumhome_wgo_pos3]

@ HaYLaZ, which </tbody> is the above referring too?

I've opted for

</tbody>
<if condition="$show['birthdays']">
<!-- today's birthdays -->And haven't noticed a problem, but I'd just like to double check.

@ Mr. Hoddz. Read the instructions posted by HaYLaZ 4 up, from your own post ;). If you get stuck post up and people will try to help you.

Mr. Hoddz
06-29-2008, 09:21 AM
Ah right, missed that bit.
Thanks for pointing that out =D

pewa
06-29-2008, 07:55 PM
Thanks a lot!

Just a quick question.. the changes to FORUMDISPLAY and SHOWTHREAD that you're supposed to do I already had in my files? Is that because I've updated to the 3.7.1 version already?

HaYLaZ
06-29-2008, 08:10 PM
Thanks a lot!

Just a quick question.. the changes to FORUMDISPLAY and SHOWTHREAD that you're supposed to do I already had in my files? Is that because I've updated to the 3.7.1 version already?

If you installed updated xml file it isnt necessary to make changes;)

Battle_Ring
06-30-2008, 02:08 AM
does this work with 3.7.2

infinityloop
06-30-2008, 04:21 AM
These codes for who are using clean blue for vbulletin 3.7.1 (not upgraded version)

So ıf you are using 3.7.2 the codes are that I gave already defined in vbulletin 3.7.2 version.
i have 3.7.1 installed, and if i follow your advice for the "forumdisplay template"
then my template looks like:

<if condition="$show['post_queue']"><if condition="$show['post_queue']">
<div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div></if>
<if condition="$show['attachment_queue']"><div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div></if>
<if condition="$show['mass_move']"><div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div></if>
<if condition="$show['mass_prune']"><div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div>
</if></if>

in your "search for" step you look for the code after the "<if condition="$show['post_queue']">", but in the replace code you insert the whole code segment including the "if"

so this gives you then
"<if condition="$show['post_queue']"><if condition="$show['post_queue']">"

HaYLaZ
06-30-2008, 01:15 PM
i have 3.7.1 installed, and if i follow your advice for the "forumdisplay template"
then my template looks like:

<if condition="$show['post_queue']"><if condition="$show['post_queue']">
<div><label for="fa_mpo"><input type="radio" name="do" id="fa_mpo" value="modposts" checked="checked" />$vbphrase[view_posts_queue]</label></div></if>
<if condition="$show['attachment_queue']"><div><label for="fa_mat"><input type="radio" name="do" id="fa_mat" value="modattach" />$vbphrase[view_attachment_queue]</label></div></if>
<if condition="$show['mass_move']"><div><label for="fa_mov"><input type="radio" name="do" id="fa_mov" value="move" />$vbphrase[massmove_threads]</label></div></if>
<if condition="$show['mass_prune']"><div><label for="fa_prn"><input type="radio" name="do" id="fa_prn" value="prune" />$vbphrase[massprune_threads]</label></div>
</if></if>

in your "search for" step you look for the code after the "<if condition="$show['post_queue']">", but in the replace code you insert the whole code segment including the "if"

so this gives you then
"<if condition="$show['post_queue']"><if condition="$show['post_queue']">"

probably you have downloaded upgraded package so you cant find the codes which I gave.;)

BucWiLd
06-30-2008, 03:58 PM
i would love to get this temp.. but i am so new to this stuff it crazy. i even played to have my forum settup.. i know pathetic.. can someone explain to me how i can get this to my page? pleeease?

Mike Gaidin
07-01-2008, 02:20 AM
Very nice skin. Thank you for sharing.

frozen187
07-01-2008, 03:13 AM
Great skin! I'm having a few problems editing the nav bar, when I do add my codes it messes up everything these are the ones I'm trying to get working.

In 'navbar' template:
FIND:
-----------------------------------------------------------
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
-----------------------------------------------------------
BELOW ADD:
-----------------------------------------------------------
<td class="vbmenu_control"><a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span></td>
-----------------------------------------------------------
FIND:
-----------------------------------------------------------
</if>
<!-- / NAVBAR POPUP MENUS -->
-----------------------------------------------------------
ABOVE ADD:
-----------------------------------------------------------
<!-- My Posts Menu -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->

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

Any ideas how to make them work?

Kinneas
07-01-2008, 09:40 AM
Great skin! I'm having a few problems editing the nav bar, when I do add my codes it messes up everything these are the ones I'm trying to get working.

In 'navbar' template:
FIND:
-----------------------------------------------------------
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
-----------------------------------------------------------
BELOW ADD:
-----------------------------------------------------------
<td class="vbmenu_control"><a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span></td>
-----------------------------------------------------------
FIND:
-----------------------------------------------------------
</if>
<!-- / NAVBAR POPUP MENUS -->
-----------------------------------------------------------
ABOVE ADD:
-----------------------------------------------------------
<!-- My Posts Menu -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->

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

Any ideas how to make them work?

Remove the <td class="vbmenu_control"> part of it, so for example try:
<a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span>


For your first bit.

And in this style the buttons are in the header not the navbar.

anderow
07-01-2008, 06:50 PM
great template to the OP :D

But Im having a few problems installing ibProArcade v2.6.7

Ive got to
click SAVE and edit the Template navbar (below "Navigation/Breadcrumb Templates")

In this navbar-Template search for:


and then it says to find this...

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


and below it add

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


But Ive searched the template and the td class vbmenu_control is not in there?

Does anyone know why this is and where can I find it please?

Ive searched the style and cant find any reference to any of the above code :down:

HaYLaZ
07-02-2008, 08:36 AM
i would love to get this temp.. but i am so new to this stuff it crazy. i even played to have my forum settup.. i know pathetic.. can someone explain to me how i can get this to my page? pleeease?

Dowload zip package.

extract it to your pc. Open cb folder you will se uplaod and dont uplaod folders just open uplaod folder and you will see cb folder upload it to your forums root (near index.php)

Login admincp

admincp>>styles & templates>>download -uplaod styles>>click browse than select the xml file which was located in dontupload/xml folder select it and than press import.

If you want to make it your default style;

Vbulletin options>>style & language options>>Default style section select Clean Blue than save.

Great skin! I'm having a few problems editing the nav bar, when I do add my codes it messes up everything these are the ones I'm trying to get working.

In 'navbar' template:
FIND:
-----------------------------------------------------------
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
-----------------------------------------------------------
BELOW ADD:
-----------------------------------------------------------
<td class="vbmenu_control"><a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span></td>
-----------------------------------------------------------
FIND:
-----------------------------------------------------------
</if>
<!-- / NAVBAR POPUP MENUS -->
-----------------------------------------------------------
ABOVE ADD:
-----------------------------------------------------------
<!-- My Posts Menu -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->

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

Any ideas how to make them work?


The navbar links are located at header template not in navbar template.

You must add your links to header template and you must put your dropdown menu links to navbar template;

Explaining more;

Open header template and find;

<div class="nvlink" align="center">

Add your codes below it;

Example:

<a href="search.php?do=finduser&u=$bbuserinfo[userid]" accesskey="2">My Posts</a> <span id="navbar_myposts"><script type="text/javascript"> vbmenu_register("navbar_myposts"); </script></span>

For your dropdown menu;

Open navbar template and find;

<!-- / NAVBAR POPUP MENUS -->

Add your menu codes below it;

Example:

<!-- My Posts Menu -->
<div class="vbmenu_popup" id="navbar_myposts_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->


great template to the OP :D

But Im having a few problems installing ibProArcade v2.6.7

Ive got to

and then it says to find this...



and below it add




But Ive searched the template and the td class vbmenu_control is not in there?

Does anyone know why this is and where can I find it please?

Ive searched the style and cant find any reference to any of the above code :down:


Please read this post carefully. I told how can you add more links to header or navbar.

frozen187
07-02-2008, 11:28 PM
I tried doing as you posted and no matter where I put the my post menu it will effect the next link to the right. So My Post will show and then the FAQ will have a drop down menu with My Posts.

HaYLaZ
07-03-2008, 08:34 AM
you must add like below;

add your link header which will open when clicked.

open header template and add ;

<a id="yourmenuname" href="$show[nojs_link]#yourmenuname" >Your link Name</a><script type="text/javascript"> vbmenu_register("yourmenuname",true);</script>

Than open navbar template and add your dropdown menu codes like below;


<!-- My Posts Menu -->
<div class="vbmenu_popup" id="yourmenuname" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->

Carefull the red colored names they must be same name for work properly.

Spaz21
07-03-2008, 07:29 PM
i apologize if this has been asked.... but we use a .swf file for the header in our forum... how do i add this to the top of the template?

also... where it says "Banners or Announcements Here".... how do I put information in there?

Spaz21
07-03-2008, 08:53 PM
so i got my issues sorted out :)

is this style available for anything like Joomla or Wordpress? I'd like to redo the main part of my site and would like the site to match the style of my forum :) or does this style work with any of the portal versions that are out there for vbulletin?

anderow
07-03-2008, 09:53 PM
Thanks HaYlaZ

I did what you said and after a little tweaking got the menu display right.
The arcade now shows and the menu is fine..however all the games take me to 404 page not found errors!!Dont think this is template related though?

Can someone tell me if they have managed to get this modification working please

dropdown subforums menu (https://vborg.vbsupport.ru/showthread.php?t=167683)

I did all the changes as stated and it has made zero difference and my forum still looks the same?!!! Does the author have any idea what I need to do to get it working pleeeeaase :D
TIA

frozen187
07-04-2008, 02:36 AM
you must add like below;

add your link header which will open when clicked.

open header template and add ;

<a id="yourmenuname" href="$show[nojs_link]#yourmenuname" >Your link Name</a><script type="text/javascript"> vbmenu_register("yourmenuname",true);</script>

Than open navbar template and add your dropdown menu codes like below;


<!-- My Posts Menu -->
<div class="vbmenu_popup" id="yourmenuname" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">My Posts</td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=finduser&u=$bbuserinfo[userid]">My Posts</a></td>
</tr>
<tr>
<td class="vbmenu_option"><a href="search.php?do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a></td>
</tr>
</table>
</div>
<!-- / My Posts Menu -->

Carefull the red colored names they must be same name for work properly.

I've almost got it going now. It no longer messes up the nav bar. But where you put" Your link Name" Which I changed the name this should expand to My Posts and My threads and it don't. When I click it then it just brings me to the forum.

HaYLaZ
07-04-2008, 06:11 AM
Thanks HaYlaZ

I did what you said and after a little tweaking got the menu display right.
The arcade now shows and the menu is fine..however all the games take me to 404 page not found errors!!Dont think this is template related though?

Can someone tell me if they have managed to get this modification working please

dropdown subforums menu (https://vborg.vbsupport.ru/showthread.php?t=167683)


I did all the changes as stated and it has made zero difference and my forum still looks the same?!!! Does the author have any idea what I need to do to get it working pleeeeaase :D
TIA

I had never used dropdown subforum modification ;) And ı have no idea:)

I've almost got it going now. It no longer messes up the nav bar. But where you put" Your link Name" Which I changed the name this should expand to My Posts and My threads and it don't. When I click it then it just brings me to the forum.

Menu name and links names are different.

Example;

<a id="usercptools" href="$show[nojs_link]#usercptools" >Quick Links</a><script type="text/javascript"> vbmenu_register("usercptools",true);</script>

frozen187
07-04-2008, 06:46 AM
I'll mess around with it some more tomorrow. To give you a better idea of what I'm doing, I'm trying to get this plugin working with the theme

https://vborg.vbsupport.ru/showthread.php?t=125529

I have i working with my other ones just having a hard time now

frozen187
07-06-2008, 03:47 AM
I've installed Donation System LITE and when I add the template edits the navbar goes crazy again. I've uploaded a attachment so you can see.

This is what it says to edit and I've done so.

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

HaYLaZ
07-07-2008, 07:09 PM
Donation System LITE using td class codes for links but in Clean Blue there isnt td class link. So you must put links manually

K-Lex
07-11-2008, 01:24 PM
nice style thanks

steve1966
07-11-2008, 06:24 PM
Hi HaYLaZ I have AW Donation System Pro installed and I need a code to be able to add to this stlye please could you make me one so that i would be able to use this as my defalt style

tia

Marcel Adam
07-11-2008, 11:35 PM
thank u man

nice

Reeftanksonline
07-12-2008, 02:06 PM
Great Job I love it

HaYLaZ
07-12-2008, 06:21 PM
Hi HaYLaZ I have AW Donation System Pro installed and I need a code to be able to add to this stlye please could you make me one so that i would be able to use this as my defalt style

tia

If you can put codes here I can help you how you can use codes in the style.

AuroraStorm
07-12-2008, 07:44 PM
Will you update your Coffee style to 3.7?

steve1966
07-13-2008, 08:14 AM
If you can put codes here I can help you how you can use codes in the style.

hi thanks i will pm you some info i have from the owner of the donation sysytem now

HaYLaZ
07-13-2008, 12:04 PM
Will you update your Coffee style to 3.7?

Sorry but no:D

hi thanks i will pm you some info i have from the owner of the donation sysytem now

Replied

Marc118
07-14-2008, 05:33 PM
What font was used? I am trying to make a few buttons, thanks! INSTALLED

FarukErsin
07-14-2008, 06:58 PM
TR: Teşekkürler deneyeceğim ellerine parmaklarına sağlık.

EN: Thanks. Health fingers.

INSTALLED

steve1966
07-17-2008, 10:38 AM
hi i have this code that works with my other style nave bars that put a link to my portal

<td class="vbmenu_control"><a href="http://www.mysite.org/">Portal</a></td>

please can you make me a code to replace the above so i can use it for the header template

thanks

mpoorrajab
07-17-2008, 11:42 AM
dear HaYLaZ ...

ive been updated this template to 3.7.2 but there is one more changes ...

open MEMBERINFO template :
find:
textarea.focus();
textarea.select();
}
}
</if>

replace with this:
textarea.focus();
textarea.select();
}
return false;
}
</if>


i asked a quastion in this post (https://vborg.vbsupport.ru/showpost.php?p=1552499&postcount=231)
you answered me but i want to change bgcolor for QUOTE...

HaYLaZ
07-17-2008, 04:32 PM
hi i have this code that works with my other style nave bars that put a link to my portal

<td class="vbmenu_control"><a href="http://www.mysite.org/">Portal</a></td>

please can you make me a code to replace the above so i can use it for the header template

thanks

just add like this;

<td><a href="http://www.mysite.org/">Portal</a></td>

dear HaYLaZ ...

ive been updated this template to 3.7.2 but there is one more changes ...

open MEMBERINFO template :
find:


replace with this:



i asked a quastion in this post (https://vborg.vbsupport.ru/showpost.php?p=1552499&postcount=231)
you answered me but i want to change bgcolor for QUOTE...

for changing quote background you must modify bbcode_quote template.

steve1966
07-17-2008, 07:11 PM
Hi HaYLaZ thank you for the code i got it working

mpoorrajab
07-18-2008, 07:01 AM
just add like this;

<td><a href="http://www.mysite.org/">Portal</a></td>



for changing quote background you must modify bbcode_quote template.
i did it but no changes ...

did you check it?

steve1966
07-18-2008, 09:34 AM
i did it but no changes ...

did you check it?


hi to make it work i had to use it like

<td><a href="http://www.mysite.org/">Portal</a>

HaYLaZ
07-18-2008, 04:16 PM
must be like below;

<td><a href="http://www.mysite.org/">Portal</a></td>

milos
07-20-2008, 07:51 AM
Tr: Eline koluna sağlık sadri { iMKaNSıZ/DeRSiMLi }

very nice style,thanks installed!

RiSiCO
07-20-2008, 06:56 PM
Nice one :)

Raitsa
07-22-2008, 06:13 AM
Thank you very much HaYLaZ for your impressive work, first class support as well!

HunterZ
07-30-2008, 03:14 AM
How can I change the blue area across the top of the page to be the greyish background color of the rest of the page so that it doesn't clash with my forum logo?

RedPoint
07-30-2008, 08:24 AM
Hi, i installed your style, its wunderfull, thanks for this.

But I have a little problem when i use my downloadarea https://vborg.vbsupport.ru/showthread.php?t=120122 ...i become this error:
Parse error: syntax error, unexpected T_STRING in /srv/www/vhosts/domain.com/httpdocs/forum/downloads.php(1453) : eval()'d code on line 13

The error come just when i select to use your style.

How i can fix it?

Regards

Snowball1
08-02-2008, 02:16 AM
Please help me. I am very new to this and i need your help. I have installed clean blue and it looks good. I'll like to add "Home" to the navigation bar but i don't really know what to do. I will be very happy if someone can give me the complete code so that i just copy and paste. that's the only thing i know as at now. thanks very much.:)

HaYLaZ
08-02-2008, 02:08 PM
pm replied

RedPoint
08-04-2008, 10:28 AM
Hi, i installed your style, its wunderfull, thanks for this.

But I have a little problem when i use my downloadarea https://vborg.vbsupport.ru/showthread.php?t=120122 ...i become this error:

Parse error: syntax error, unexpected T_STRING in /srv/www/vhosts/domain.com/httpdocs/forum/downloads.php(1453) : eval()'d code on line 13

The error come just when i select to use your style.

How i can fix it?

Regards

@HaYLaZ
...you read my post?

Can you help me please

regards

HaYLaZ
08-04-2008, 02:05 PM
I checked your website and your download plugin.

It works fine.

RedPoint
08-04-2008, 04:30 PM
Yes, but when you wanna add a new download become the error over the header
Parse error: syntax error, unexpected T_STRING in /srv/www/vhosts/domain.com/httpdocs/forum/downloads.php(1453) : eval()'d code on line 13

To see the error you must be logged in and must add a new download. Its not in Frontend :-(
When you want I send you a PM with a new account to testit when you need this.

Regards

HaYLaZ
08-05-2008, 10:48 AM
I dont think this error because of the template. May be it can be modification issue.

Send me new acc details for looking.

ac1d1dty
08-05-2008, 02:46 PM
sorry for the n00bs question, but how do I edit the logo name? I would like the same writing but a different word. Ive got photoshop CS3 Extended and tried to use that. But when it loaded it said "some text layers contain fonts that were missing. These layers will have to have fonts replaced before they can be used for vector based output.

cheers

J0PA
08-05-2008, 08:41 PM
Hello,

That theme (and generaly vbulletin themes) applies to vb CMPS ? or we need to have different styles there?

This style, has something similar for vb CMPS ?

Thx

joomlajunkie
08-06-2008, 12:09 AM
Just my 2 cents worth here.

Can you please try and make sure you remove the thumbs.db files before packing. They are windows specifc and not needed on the server or the theme.

thanks, nice theme.

RedPoint
08-07-2008, 08:57 AM
@HaYLaZ
...do you have news for my problem about the template?

regards

Sym0n
08-08-2008, 06:31 AM
Hi HaYLaZ,
I've just installed the latest AWCoding - Donation System (https://vborg.vbsupport.ru/showthread.php?t=177437) and I am trying to get the navbar drop down working.

The instructions for making the manually changes to custom styles can be found here (https://vborg.vbsupport.ru/showpost.php?p=1501763&postcount=2). I've tried everything I can to get this working but unfortunately can't. Could your please post instructions or the custom code required please to insert the drop down menu for this add on to the navbar of your style?

Thanks for your help,

Sy

Andyucs
08-08-2008, 05:15 PM
i have a strange one

newposts dont show in the navbar

gkaradagan
08-09-2008, 11:56 PM
thankssss

GSeybold
08-11-2008, 02:18 AM
Hello
Do you have a live demo for this?

Thanks

G

Filmkolik
08-11-2008, 06:44 AM
Emeğine saygı HaYLaZ kardeşim Teşekkurler

hima85222
08-11-2008, 12:18 PM
I had this error when i installed the v3.7.2 style, Members every time they log-in, it don't log-in. as if the member didn't log-in at all.

When i installed the original nave bar code , every thing was fine but i got this error

" ‘Unable to add cookies, address has been sent in advance "

home/xxxx/public_html/forums/includes/class_core.php/

Line : 3243

RipperHoss
08-11-2008, 10:29 PM
I really do like this style, but as many others, I need to know what font you used in the graphics in order to be able to edit the PSD files attached (instead of just erasing the layers and starting over).

Any help you could provide would be greatly appreciated.

anderow
08-12-2008, 09:44 PM
Hi HaYLaZ,
I've just installed the latest AWCoding - Donation System (https://vborg.vbsupport.ru/showthread.php?t=177437) and I am trying to get the navbar drop down working.

The instructions for making the manually changes to custom styles can be found here (https://vborg.vbsupport.ru/showpost.php?p=1501763&postcount=2). I've tried everything I can to get this working but unfortunately can't. Could your please post instructions or the custom code required please to insert the drop down menu for this add on to the navbar of your style?

Thanks for your help,

Sy


I had a very similiar problem installing a dropdown subforum modification.
Unfortunately, HaYLaZ could not help.
So dropdowns do NOT work with clean blue, although it is a great skin..

HaYLaZ
08-13-2008, 09:10 AM
I had this error when i installed the v3.7.2 style, Members every time they log-in, it don't log-in. as if the member didn't log-in at all.

When i installed the original nave bar code , every thing was fine but i got this error

" ?Unable to add cookies, address has been sent in advance "

home/xxxx/public_html/forums/includes/class_core.php/

Line : 3243

Anybody havent take any error like this. Try the problem with default template. If it still exits check your cookie settings.

I really do like this style, but as many others, I need to know what font you used in the graphics in order to be able to edit the PSD files attached (instead of just erasing the layers and starting over).

Any help you could provide would be greatly appreciated.

Please look at popst. I will attached psd and font.

I had a very similiar problem installing a dropdown subforum modification.
Unfortunately, HaYLaZ could not help.
So dropdowns do NOT work with clean blue, although it is a great skin..

I cant give support for other modifications. I can only give template support.

hima85222
08-13-2008, 11:05 AM
Thank you for your reply

pleas send me navbar code Proper

Sym0n
08-13-2008, 12:24 PM
I cant give support for other modifications. I can only give template support.
Not sure if you are going to class my post here (https://vborg.vbsupport.ru/showpost.php?p=1593881&postcount=311) as support for other mods, personally I'd say it's template but that's your call.

If not then can you please update the template to comply with the new 3.7.x hooks, in particular $template_hook[navbar_buttons_left] and $template_hook[navbar_buttons_right]?

Ta

Sy

anderow
08-13-2008, 08:18 PM
I cant give support for other modifications. I can only give template support.

I understand totally.
but its the template thats causing these types of dropdown menus not to work!... (AWstats dropdown as the post by Sy says, and also the dropdown mod I have tried to get working)

As you are the creator of this skin I was just hoping you might know why it does not allow dropdown menus to work...!

HaYLaZ
08-14-2008, 03:47 PM
Not sure if you are going to class my post here (https://vborg.vbsupport.ru/showpost.php?p=1593881&postcount=311) as support for other mods, personally I'd say it's template but that's your call.

If not then can you please update the template to comply with the new 3.7.x hooks, in particular $template_hook[navbar_buttons_left] and $template_hook[navbar_buttons_right]?

Ta

Sy

Ok now ı give you a working easy way for donation system.

Just open header template and find;

<div class="nvlink" align="center">

Below add these codes;

<a id="navbar_dsl" href="$show[nojs_link]#navbar_dsl">Donation</a><script type="text/javascript"> vbmenu_register("navbar_dsl"); </script>

Now dropdown menu will appear Tested and working fine.

I understand totally.
but its the template thats causing these types of dropdown menus not to work!... (AWstats dropdown as the post by Sy says, and also the dropdown mod I have tried to get working)

As you are the creator of this skin I was just hoping you might know why it does not allow dropdown menus to work...!

This isnt template mistake. Because all templates have diffrent look and codes. In clean blue all navbar menus are in header so that modification menu not appear unless you modified manually necessary codes.

I looked for and find necessary codes for donation system myself. The provider didnt give the dropdown menu id's so ı found them from the product xml file

I meaned in my previously message that ı cant give all modification supports for clean blue. Because of modification codes. If you give the menu codes etc ı can tell you where you can add. I hope you understand me.

Sym0n
08-14-2008, 07:19 PM
Ok now ı give you a working easy way for donation system.

Just open header template and find;

<div class="nvlink" align="center">Below add these codes;

<a id="navbar_dsl" href="$show[nojs_link]#navbar_dsl">Donation</a><script type="text/javascript"> vbmenu_register("navbar_dsl"); </script>Now dropdown menu will appear Tested and working fine.

This isnt template mistake. Because all templates have diffrent look and codes. In clean blue all navbar menus are in header so that modification menu not appear unless you modified manually necessary codes.

I looked for and find necessary codes for donation system myself. The provider didnt give the dropdown menu id's so ı found them from the product xml file

I meaned in my previously message that ı cant give all modification supports for clean blue. Because of modification codes. If you give the menu codes etc ı can tell you where you can add. I hope you understand me.
Hi HaYLaZ,
Thank you for your effort in getting this working with your template.

The new link is appearing on the navbar along with the dropdown arrow...but unfortunately the dropdown itself isn't working. The link is pointing to http://domain.com/forum/index.php?nojs=1#navbar_dsl but nothing happens when it's clicked. I've tested it in both Firefox and Internet Explorer. :(

HaYLaZ
08-15-2008, 09:49 AM
Hi. Must be work but we try this too.

Just replace these codes with navbar template;

<br />

<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="bottom">
<td><a href="#" onclick="history.back(1); return false;"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td>&nbsp;</td>
<td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><if condition="$_SERVER['REQUEST_METHOD'] == 'POST'"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="" border="0" /><else /><a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="$vbphrase[reload_this_page]" border="0" /></a></if> <strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
</if>
</td>

<if condition="$show['member']">

<td class="alt2" valign="top" nowrap="nowrap">
<div class="smallfont">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
<phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>
<if condition="$show['notifications'] AND $show['popups']">
<div><span id="notifications"><a href="usercp.php?$session[sessionurl_q]">$vbphrase[your_notifications]:</a> <strong>$notifications_total</strong></span></div>
<script type="text/javascript"> vBmenu.register("notifications"); </script>
<else /><if condition="$show['pmstats']">
<div><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></div>
</if></if>

<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
</div>
</td>

<else />

<td class="alt2" nowrap="nowrap" style="padding:0px">

<!-- login form -->
<form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, $show[nopasswordempty])">
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont"><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont"><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" value="$vbphrase[password]" onfocus="if (this.value == '$vbphrase[password]') this.value = '';" /></td>
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form>
<!-- / login form -->

</td>

</if>

</tr>
</table>
<!-- / breadcrumb, login, pm info -->

<!-- nav buttons bar -->

<!-- / nav buttons bar -->

<br />
<if condition="$show['notices']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[notices]</td>
</tr>
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>
<if condition="$show['forumdesc']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]</span></td>
</tr>
</table>
<br />
</if>

<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->

<if condition="$show['searchbuttons']">
<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="search.php?do=process" method="post">

<input type="hidden" name="do" value="process" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="exactname" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<div><input type="text" class="bginput" name="query" size="25" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" /></div>
<div style="margin-top:$stylevar[cellpadding]px">
<label for="rb_nb_sp0"><input type="radio" name="showposts" value="0" id="rb_nb_sp0" tabindex="1002" checked="checked" />$vbphrase[show_threads]</label>
&nbsp;
<label for="rb_nb_sp1"><input type="radio" name="showposts" value="1" id="rb_nb_sp1" tabindex="1003" />$vbphrase[show_posts]</label>
</div>
</form>
</td>
</tr>
<if condition="$vboptions[threadtagging]">
<tr>
<td class="vbmenu_option"><a href="tags.php?$session[sessionurl_q]" rel="nofollow">Tag Search</a></td>
</tr>
</if>
<tr>
<td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
</tr>
$template_hook[navbar_search_menu]
</table>
</div>
<!-- / header quick search form -->
</if>

<if condition="$show['member']">
<!-- user cp tools menu -->
<div class="vbmenu_popup" id="usercptools_menu" style="display:none" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead">$vbphrase[quick_links]</td></tr>
<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">$vbphrase[open_contacts]</a></td></tr>
$template_hook[navbar_quick_links_menu_pos1]
<tr><td class="thead">$vbphrase[networking]</td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=buddylist"><if condition="$show['friends_and_contacts']">$vbphrase[contacts_and_friends]<else />$vbphrase[contacts]</if></a></td></tr>
<if condition="$show['quick_links_groups']">
<tr><td class="vbmenu_option"><a href="group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
</if>
<if condition="$show['quick_links_albums']">
<tr><td class="vbmenu_option"><a href="album.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[pictures_and_albums]</a></td></tr>
</if>
$template_hook[navbar_quick_links_menu_pos2]

<tr><td class="thead"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<!--<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>-->
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_your_details]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
$template_hook[navbar_quick_links_menu_pos3]

<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmmainlink']"><tr><td class="vbmenu_option"><a href="private.php$session[sessionurl_q]" rel="nofollow">$vbphrase[private_messages]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]" rel="nofollow">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[your_profile]</a></td></tr>
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>
$template_hook[navbar_quick_links_menu_pos4]

</table>
</div>
<!-- / user cp tools menu -->

<if condition="$notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifications_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead" colspan="2">$vbphrase[your_notifications]</td></tr>
$notifications_menubits
</table>
</div>
<!-- / notifications menu -->
</if>

</if>
<!-- / NAVBAR POPUP MENUS -->

<!-- PAGENAV POPUP -->
<div class="vbmenu_popup" id="pagenav_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
<input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
<input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" />
</form>
</td>
</tr>
</table>
</div>
<!-- / PAGENAV POPUP -->
</if>

$ad_location[ad_navbar_below]

Sym0n
08-15-2008, 12:27 PM
No change, the link still does nothing. :(

HaYLaZ
08-16-2008, 09:07 AM
can you pm me your web adress

pewa
08-16-2008, 09:59 PM
Thanks for a nice style!

I have a small problem with broken lines on my forum display. I want the line that say the time and date of the latest entry to be to the right.. so that way the rows won't be broken.

See picture

infinityloop
08-18-2008, 11:52 AM
@HaYLaZ

Thank you very much for this great style!
Do you plan to release a "3.7.2 PL2" version of this style in the near future?
Would be great!

Thanks!

stevo_
08-20-2008, 03:02 AM
How do I add a link in the Navbar?????

EDIT : Nevermind, Found in under the header section in the Style Manager

thecore762
08-20-2008, 06:51 AM
I am having some hard times with the theme on vBadvanced and below are the screenshots from Internet Explorer:
It seems to me there are images missing.

Sym0n
08-20-2008, 07:52 AM
I am having some hard times with the theme on vBadvanced and below are the screenshots from Internet Explorer:
It seems to me there are images missing.
That's a VBa installation issue and nothing to do with the Clean Blue template.

A quick search over on VBa returns the ANSWER (http://www.vbadvanced.com/forum/faq.php?s=&do=search&q=images+missing&match=all&titlesonly=0) to your question. ;)

Sym0n
08-26-2008, 04:21 PM
Are you sure you've created that sub forum correctly in the ACP?

hima85222
08-26-2008, 04:51 PM
Updated vbulletin 3.7.3

Amm0
08-28-2008, 04:00 PM
Hi, thanks for the skin, it's absolutely great!

Just one thing, on my breadcrumb trail on the skin the main forum link goes back to 'index.php' when I want it to link to 'forum.php'

I've tried looking in the Navigation and Breadcrumb templates but have had no luck.

Is there also a way to change the link on the main logo at the top?

Thanks

Amm0.

Edit: Managed to find out how myself :)

Change from this: (in nav)
<td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>

To this: <td width="100%"><span class="navbar"><a href="$vboptions/forum.php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>

steve1966
08-29-2008, 06:33 AM
Hi please can you update you great style to 3.73

Sym0n
09-02-2008, 10:44 AM
HaYLaZ. Any comment as to whether you will be updating this style for 3.7.3 compatibility?

Ta

Sy

Sym0n
09-03-2008, 01:23 PM
Bump...

movslow
09-04-2008, 03:18 AM
Fantastic skin. Glad there are people like you working to better the look and feel of VB. Hats off.

I do have one question. Due to an older version of Photoshop, I am unable to open the logo.gif file. Do you have a completly blank file w/o the text, just the fading background. I can add the text, would help out tremendously.

Thanks again!!
:cool:

HaYLaZ
09-04-2008, 06:12 PM
Updated 3.7.3

Download zip and overwrite xml file.

Added blank gif logo file in the attachment

movslow
09-04-2008, 06:22 PM
Updated 3.7.3

Download zip and overwrite xml file.

Added blank gif logo file in the attachment

Awesome, thank you sir!!
:up:

steve1966
09-04-2008, 07:49 PM
thanks for the update

anderow
09-04-2008, 08:37 PM
Hmm.
Can I just confirm, if I update my install of Clean Blue, that I will lose all of my current (skin) customisations on my forum?
If so, could you post the code to manually change for the header image please haylaz? thanks

HaYLaZ
09-06-2008, 09:44 AM
Header image?

There is no header image changes. By the way there isnt any important changes between 372 and 373 for clean blue because most templates are default.

pewa
09-09-2008, 08:01 PM
Header image?

There is no header image changes. By the way there isnt any important changes between 372 and 373 for clean blue because most templates are default.

I have made several changes to the style.. If I want to upgrade from 3.7.3 -> 3.7.3, I don't need to update the skin also?

HaYLaZ
09-10-2008, 04:03 PM
no need;)

Baceuse there are 2-3 templates modified. All others are default so that you dont need to make any changes or upgrade process for clean blue.

Sym0n
09-11-2008, 07:19 PM
Can we have the info to allow us to do a manual update to the style for 3.7.3 PL1, as per previous updates, please?

Ta

Sy

HaYLaZ
09-12-2008, 11:08 AM
I said that no updated necessary. There are no template changes in clean blue style. Neither 3.7.3 nor 3.7.3 PL1

captainbohica
09-16-2008, 02:21 AM
Haylaz - love the skin...

although i have one issue... i have a private forum (breakers only) and it looks out of alignment with the other forums.. (see screen shot)

http://img379.imageshack.us/img379/7800/project3dc2.jpg

can you help me out?

HaYLaZ
09-16-2008, 06:27 PM
It seems that your Breakers Only named forum created like category.

Just change it to forum and add it under Hobby Discussion.

OR;

If you want to make new category;

you must add at least one forum under it to seems normal

g0dfather1984
09-20-2008, 12:12 AM
What template is it to fix this? If so, can you send me a fresh new copy of it? Everything is out of whack. I don't even know why the UserCP is in the middle where it is. The forum rules seems to be in two places. Not sure why. It's all out of joint.

I know it's forumhome but what else? Or is that just it?

https://vborg.vbsupport.ru/external/2008/09/21.jpg

captainbohica
09-20-2008, 04:38 AM
does admanagement work with this template? could i follow the same install instructions for the default template to have ad management work?

HaYLaZ
09-22-2008, 05:51 AM
What template is it to fix this? If so, can you send me a fresh new copy of it? Everything is out of whack. I don't even know why the UserCP is in the middle where it is. The forum rules seems to be in two places. Not sure why. It's all out of joint.

I know it's forumhome but what else? Or is that just it?

https://vborg.vbsupport.ru/external/2008/09/21.jpg

It seems that you have reverted the navbar tempalte to original and the header template

does admanagement work with this template? could i follow the same install instructions for the default template to have ad management work?

I didnt try it but it must work

mpoorrajab
09-23-2008, 11:55 AM
Updated 3.7.3

Download zip and overwrite xml file.

Added blank gif logo file in the attachment

can u please put manual update here ?

habbishfmforum
09-23-2008, 05:20 PM
Thanks for this style.

Sym0n
09-26-2008, 09:55 AM
HaYLaZ - I've just noticed that the thread icons are no longer showing in forumdisplay but are in showthread (see attachments), except for the standard https://vborg.vbsupport.ru/external/2011/06/14.gif or if there is a poll then the cb poll_posticon.gif. This only seems to of happened since I updated to 3.7.3 PL1 and no matter which one is chosen only the https://vborg.vbsupport.ru/external/2011/06/14.gif is shown in forumdisplay. :confused:

Any ideas on how to fix this?

Teşekk?r ederim

Sy

Kadi
09-27-2008, 07:42 PM
Hi,

Great style.

I'm using vbadvanced as homepage and none of the links on the nav bar are correct. On the forum they are working.

How do i fix this?

Thanks.

EDIT: Figured it out. :)

TsirhCitna
09-28-2008, 05:49 AM
I love this style.

Do you have a PayPal? I would like to donate a little support for the excellent work.

TsirhCitna
09-28-2008, 05:50 AM
Hi,

Great style.

I'm using vbadvanced as homepage and none of the links on the nav bar are correct. On the forum they are working.

How do i fix this?

Thanks.
vBadvanced Global Settings and add them to the header replacements.

Kadi
09-28-2008, 07:55 PM
Thanks TsirhCitna.

GSeybold
09-29-2008, 01:40 AM
Great design. Simple in nature and colors. Great job!

RoHaN501
10-01-2008, 06:01 PM
turkçe butonlar için tşk.ler

Sym0n
10-04-2008, 06:37 AM
HaYLaZ - I've just noticed that the thread icons are no longer showing in forumdisplay but are in showthread (see attachments), except for the standard https://vborg.vbsupport.ru/external/2011/06/14.gif or if there is a poll then the cb poll_posticon.gif. This only seems to of happened since I updated to 3.7.3 PL1 and no matter which one is chosen only the https://vborg.vbsupport.ru/external/2011/06/14.gif is shown in forumdisplay. :confused:

Any ideas on how to fix this?

Teşekk?r ederim

Sy

HaYLaZ any ideas on fixing this please?

deneme2
10-04-2008, 09:06 AM
thanks

HaYLaZ
10-04-2008, 12:59 PM
HaYLaZ any ideas on fixing this please?

Try to reset the forumdisplay template. I Have tested it at local there was no problem. Try to reset

abouahmed
10-04-2008, 02:56 PM
nice work

Sym0n
10-05-2008, 08:25 AM
Try to reset the forumdisplay template. I Have tested it at local there was no problem. Try to reset
Hi,
Thanks for the reply. Wasn't the template, I just had to hit the save button for the post icons...odd. But sorted.

Sy

reverse-age
10-07-2008, 06:29 PM
Thanks, is a very nice work ! ;)

Tanpapasmurf
10-07-2008, 07:45 PM
I need to add some custom buttons to the navbar but noticed that its not a normal Navbar.

Where do i edit the navbar?

deepak7
10-09-2008, 10:07 AM
Any chance I can install this only where I want?

I mean no headers or something that could screw several hacks I have (banners and so on).

zodehala
10-10-2008, 05:24 PM
Selam,
Arkadaşlar mesajın içeriğindeki linkin rengini değiştiremiyorum sadece mesajın içindeki link rengini nasıl değişebilirim ?

İlginiz için teşekkürler.

###

Hi,

I want to change color of urls in posts. I try this in vbulletin settings but it changes all urls in forums. I dont want it. I make change for only urls include..

I'm waiting any back. thanks

HaYLaZ
10-11-2008, 10:54 AM
I need to add some custom buttons to the navbar but noticed that its not a normal Navbar.

Where do i edit the navbar?

https://vborg.vbsupport.ru/showpost.php?p=1450786&postcount=10

Any chance I can install this only where I want?

I mean no headers or something that could screw several hacks I have (banners and so on).

open header template and find the the text and change it with your codes;

Banner Or Announcements Here
or
<div class="afterlogo">Banner Or Announcements Here</div>


Selam,
Arkadaşlar mesajın i?eriğindeki linkin rengini değiştiremiyorum sadece mesajın i?indeki link rengini nasıl değişebilirim ?

İlginiz i?in teşekk?rler.

###

Hi,

I want to change color of urls in posts. I try this in vbulletin settings but it changes all urls in forums. I dont want it. I make change for only urls include..

I'm waiting any back. thanks

open main css and change the alt1 and alt2 link colors what you want

Gharibe
10-13-2008, 10:06 AM
installed
incredible theme

NikosN
10-14-2008, 08:28 AM
Thank you :)

zodehala
10-14-2008, 04:57 PM
https://vborg.vbsupport.ru/showpost.php?p=1450786&postcount=10



open header template and find the the text and change it with your codes;

Banner Or Announcements Here
or
<div class="afterlogo">Banner Or Announcements Here</div>




open main css and change the alt1 and alt2 link colors what you want

I want only change links in posts. I make your idea but its changed all links in the forums.

HaYLaZ
10-15-2008, 08:10 AM
change body section link colors.

zodehala
10-17-2008, 05:09 AM
Olmadı (:

##
No..

Amm0
10-17-2008, 03:56 PM
change body section link colors.

Hi Haylaz, basically the same question.

Is there any way to change the link colour/formatting ONLY in the posts, not anywhere else in the forum?

raja811
10-21-2008, 02:12 PM
i want to add to navabar stats how? where
here i added is wrong
https://vborg.vbsupport.ru/

anderow
10-21-2008, 11:02 PM
Haylaz...

Please help me!!
I am trying to install Advert System 2.6 mod off this forum (a popular mod)

Template Mods say


2= before :
<td align="$stylevar[right]" id="header_right_cell">
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
</td>
Add :

<td align="$stylevar[right]"><center><if condition="$ad_headerLogo"><center>$ad_headerLogo</center><else />&nbsp;</if></center>

and for the postbit templates


*** Postbit&Postbit_legacy 1 edit :
after :
<!-- / post $post[postid] popup menu -->
add :
$ad_postbit_below


I can find nothing at all like this in either template for Clean Blue?!!!! Where should I add the code Please? is it possible?!

thanks

GeoMapia
10-22-2008, 12:58 AM
Thanks, nice style!
Install

TBrewerton
10-23-2008, 10:13 AM
Hi there,

How can i add the link to recover password to a failed Login attempt?

Nevermind, its there just not very obvious at all, anyone know how i could bold the "click here"?

(where is this message stored?)

ndut
10-26-2008, 03:46 AM
i'm using it.. cool

HaYLaZ
10-29-2008, 07:26 AM
i want to add to navabar stats how? where
here i added is wrong
https://vborg.vbsupport.ru/

Navbar codes are located in header template. So make your changes in header template.

Haylaz...

Please help me!!
I am trying to install Advert System 2.6 mod off this forum (a popular mod)

Template Mods say



and for the postbit templates




I can find nothing at all like this in either template for Clean Blue?!!!! Where should I add the code Please? is it possible?!

thanks

pm replied.

Hi there,

How can i add the link to recover password to a failed Login attempt?

Nevermind, its there just not very obvious at all, anyone know how i could bold the "click here"?

(where is this message stored?)

Where do you want to add the link?

anderow
10-30-2008, 09:14 PM
Thanks haylaz, Im going to try that right now.

Also, does anyone else have this problem (Im not sure if its the template or not!)
if you see the image attached to this post, when I click the < or << arrows for if I want to go back a page in the posts, or back to the start of the thread respectively. it does nothing at all???

Does anyone else have this please?
Also, I dont think this is due to clean blue but in the attachments pop up (when adding images), on this forum there is about 5 'browse' boxes for adding multi pictures, but on my forum there is only one??? (Im running the latest VB)

anderow
10-30-2008, 09:17 PM
Also, sorry to be a pain Haylaz!

How would I go about adding my own header image to the template?

I can only find 'headarka.gif' which is not the full page width. how should I replace it with my own forum header please?

JetHaCkR
10-31-2008, 09:13 AM
yo, I was able to center the logo on firefox,
but it didnt center on internet explorer for some reason

HaYLaZ
10-31-2008, 11:44 AM
Thanks haylaz, Im going to try that right now.

Also, does anyone else have this problem (Im not sure if its the template or not!)
if you see the image attached to this post, when I click the < or << arrows for if I want to go back a page in the posts, or back to the start of the thread respectively. it does nothing at all???

Does anyone else have this please?
Also, I dont think this is due to clean blue but in the attachments pop up (when adding images), on this forum there is about 5 'browse' boxes for adding multi pictures, but on my forum there is only one??? (Im running the latest VB)

It isnt style problem. Its just a setting which you can find under admincp>>vbulletin options>>Message Attachment Options section

Also, sorry to be a pain Haylaz!

How would I go about adding my own header image to the template?

I can only find 'headarka.gif' which is not the full page width. how should I replace it with my own forum header please?

Its not full image. Its background image. So that you can change only logo. If you want to put your own large headere image you must modify header codes.

yo, I was able to center the logo on firefox,
but it didnt center on internet explorer for some reason

open header template find ;

<td width="300"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img border="0" src="cb/cb/logo.gif" width="300" height="122" alt="$vboptions[bbtitle]" class="logo"/></a></td>
<td width="600"><div class="afterlogo">Banner Or Announcements Here</div></td>



change wiht below and modify it;

<td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img border="0" src="cb/cb/logo.gif" height="122" alt="$vboptions[bbtitle]" class="logo"/></a></td>

raja811
11-03-2008, 08:26 PM
i want to add to navabar stats how? where
here i added is wrong
http://www.monsterup.com/upload/1224351514.jpg

Navbar codes here where i want add stats
<br />

<!-- breadcrumb, login, pm info -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%">
<if condition="is_array($navbits)">
<table cellpadding="0" cellspacing="0" border="0">
<tr valign="bottom">
<td><a href="#" onclick="history.back(1); return false;"><img src="$stylevar[imgdir_misc]/navbits_start.gif" alt="$vbphrase[go_back]" border="0" /></a></td>
<td>&nbsp;</td>
<td width="100%"><span class="navbar"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1">$vboptions[bbtitle]</a></span> $navbits[breadcrumb]</td>
</tr>
<tr>
<td class="navbar" style="font-size:10pt; padding-top:1px" colspan="3"><if condition="$_SERVER['REQUEST_METHOD'] == 'POST'"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="" border="0" /><else /><a href="$scriptpath"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_finallink_$stylevar[textdirection].gif" alt="$vbphrase[reload_this_page]" border="0" /></a></if> <strong>$navbits[lastelement]</strong></td>
</tr>
</table>
<else />
<div class="navbar" style="font-size:10pt"><a href="$vboptions[forumhome].php$session[sessionurl_q]" accesskey="1"><img class="inlineimg" src="$stylevar[imgdir_misc]/navbits_start.gif" alt="" border="0" /></a> <strong>$vboptions[bbtitle]</strong></div>
</if>
</td>

<if condition="$show['member']">

<td class="alt2" valign="top" nowrap="nowrap">
<div class="smallfont">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
<phrase 1="$pmbox[lastvisitdate]" 2="$pmbox[lastvisittime]">$vbphrase[last_visited_x_at_y]</phrase>
<if condition="$show['notifications'] AND $show['popups']">
<div><span id="notifications"><a href="usercp.php?$session[sessionurl_q]">$vbphrase[your_notifications]:</a> <strong>$notifications_total</strong></span></div>
<script type="text/javascript"> vBmenu.register("notifications"); </script>
<else /><if condition="$show['pmstats']">
<div><phrase 1="$vbphrase[unread_x_nav_compiled]" 2="$vbphrase[total_x_nav_compiled]" 3="$session[sessionurl_q]">$vbphrase[private_messages_nav]</phrase></div>
</if></if>

<if condition="$show['pmwarning']"><div><strong><phrase 1="$vbphrase[pmpercent_nav_compiled]">$vbphrase[your_pm_box_is_x_full]</phrase></strong></div></if>
</div>
</td>

<else />

<td class="alt2" nowrap="nowrap" style="padding:0px">

<!-- login form -->
<form action="login.php?do=login" method="post" onsubmit="md5hash(vb_login_password, vb_login_md5password, vb_login_md5password_utf, $show[nopasswordempty])">
<script type="text/javascript" src="clientscript/vbulletin_md5.js?v=$vboptions[simpleversion]"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont"><input type="text" class="bginput" style="font-size: 11px" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="101" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="103" id="cb_cookieuser_navbar" accesskey="c" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont"><input type="password" class="bginput" style="font-size: 11px" name="vb_login_password" id="navbar_password" size="10" tabindex="102" value="$vbphrase[password]" onfocus="if (this.value == '$vbphrase[password]') this.value = '';" /></td>
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="104" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</form>
<!-- / login form -->

</td>

</if>

</tr>
</table>
<!-- / breadcrumb, login, pm info -->

<!-- nav buttons bar -->

<!-- / nav buttons bar -->

<br />
<if condition="$show['notices']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead">$vbphrase[notices]</td>
</tr>
<tr>
<td class="alt1">$notices</td>
</tr>
</table>
<br />
</if>
<if condition="$show['forumdesc']">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%"><strong>$foruminfo[title]</strong> <span class="smallfont">$foruminfo[description]</span></td>
</tr>
</table>
<br />
</if>

<if condition="$show['popups']">
<!-- NAVBAR POPUP MENUS -->

<if condition="$show['searchbuttons']">
<!-- header quick search form -->
<div class="vbmenu_popup" id="navbar_search_menu" style="display:none" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead">$vbphrase[search_forums]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="search.php?do=process" method="post">

<input type="hidden" name="do" value="process" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="childforums" value="1" />
<input type="hidden" name="exactname" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<div><input type="text" class="bginput" name="query" size="25" tabindex="1001" /><input type="submit" class="button" value="$vbphrase[go]" tabindex="1004" /></div>
<div style="margin-top:$stylevar[cellpadding]px">
<label for="rb_nb_sp0"><input type="radio" name="showposts" value="0" id="rb_nb_sp0" tabindex="1002" checked="checked" />$vbphrase[show_threads]</label>
&nbsp;
<label for="rb_nb_sp1"><input type="radio" name="showposts" value="1" id="rb_nb_sp1" tabindex="1003" />$vbphrase[show_posts]</label>
</div>
</form>
</td>
</tr>
<if condition="$vboptions[threadtagging]">
<tr>
<td class="vbmenu_option"><a href="tags.php?$session[sessionurl_q]" rel="nofollow">Tag Search</a></td>
</tr>
</if>
<tr>
<td class="vbmenu_option"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[advanced_search]</a></td>
</tr>
$template_hook[navbar_search_menu]
</table>
</div>
<!-- / header quick search form -->
</if>

<if condition="$show['member']">
<!-- user cp tools menu -->
<div class="vbmenu_popup" id="usercptools_menu" style="display:none" align="$stylevar[left]">
<table cellpadding="4" cellspacing="1" border="0">

<tr><td class="thead">$vbphrase[quick_links]</td></tr>
<if condition="$vboptions['enablesearches']"><tr><td class="vbmenu_option"><a href="search.php?$session[sessionurl]do=getdaily">$vbphrase[todays_posts]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td></tr>
<tr><td class="vbmenu_option"><a href="#" onclick="window.open('misc.php?$session[sessionurl]do=buddylist&amp;focus=1','buddylist','statusbar=no,me nubar=no,toolbar=no,scrollbars=yes,resizable=yes,w idth=250,height=300'); return false;">$vbphrase[open_contacts]</a></td></tr>
$template_hook[navbar_quick_links_menu_pos1]

<tr><td class="thead">$vbphrase[networking]</td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=buddylist"><if condition="$show['friends_and_contacts']">$vbphrase[contacts_and_friends]<else />$vbphrase[contacts]</if></a></td></tr>
<if condition="$show['quick_links_groups']">
<tr><td class="vbmenu_option"><a href="group.php$session[sessionurl_q]">$vbphrase[social_groups]</a></td></tr>
</if>
<if condition="$show['quick_links_albums']">
<tr><td class="vbmenu_option"><a href="album.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[pictures_and_albums]</a></td></tr>
</if>
$template_hook[navbar_quick_links_menu_pos2]

<tr><td class="thead"><a href="usercp.php$session[sessionurl_q]">$vbphrase[user_control_panel]</a></td></tr>
<if condition="$show['siglink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editsignature">$vbphrase[edit_signature]</a></td></tr></if>
<!--<if condition="$show['avatarlink']"><tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editavatar">$vbphrase[edit_avatar]</a></td></tr></if>-->
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editprofile">$vbphrase[edit_your_details]</a></td></tr>
<tr><td class="vbmenu_option"><a href="profile.php?$session[sessionurl]do=editoptions">$vbphrase[edit_options]</a></td></tr>
$template_hook[navbar_quick_links_menu_pos3]

<tr><td class="thead">$vbphrase[miscellaneous]</td></tr>
<if condition="$show['pmmainlink']"><tr><td class="vbmenu_option"><a href="private.php$session[sessionurl_q]" rel="nofollow">$vbphrase[private_messages]</a></td></tr></if>
<tr><td class="vbmenu_option"><a href="subscription.php$session[sessionurl_q]" rel="nofollow">$vbphrase[subscribed_threads]</a></td></tr>
<tr><td class="vbmenu_option"><a href="member.php?$session[sessionurl]u=$bbuserinfo[userid]">$vbphrase[your_profile]</a></td></tr>
<if condition="$show['wollink']"><tr><td class="vbmenu_option"><a href="online.php$session[sessionurl_q]">$vbphrase[whos_online]</a></td></tr></if>
$template_hook[navbar_quick_links_menu_pos4]

</table>
</div>
<!-- / user cp tools menu -->

<if condition="$notifications_total">
<!-- notifications menu -->
<div class="vbmenu_popup" id="notifications_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead" colspan="2">$vbphrase[your_notifications]</td></tr>
$notifications_menubits
</table>
</div>
<!-- / notifications menu -->
</if>

</if>
<!-- / NAVBAR POPUP MENUS -->

<!-- PAGENAV POPUP -->
<div class="vbmenu_popup" id="pagenav_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr>
<td class="thead" nowrap="nowrap">$vbphrase[go_to_page]</td>
</tr>
<tr>
<td class="vbmenu_option" title="nohilite">
<form action="$vboptions[forumhome].php" method="get" onsubmit="return this.gotopage()" id="pagenav_form">
<input type="text" class="bginput" id="pagenav_itxt" style="font-size:11px" size="4" />
<input type="button" class="button" id="pagenav_ibtn" value="$vbphrase[go]" />
</form>
</td>
</tr>
</table>
</div>
<!-- / PAGENAV POPUP -->
</if>

$ad_location[ad_navbar_below]

raja811
11-03-2008, 08:49 PM
one more
http://www.monsterup.com/upload/1225752513.jpg

xMULLIGANx
11-05-2008, 08:16 PM
WOW amazing im using it for my forums now :] thanks

SpeedDemon
11-05-2008, 09:30 PM
Any chance on getting this working for 3.7.4?

SD

porcupine73
11-05-2008, 10:56 PM
Uh oh...you mean it doesn't work for 3.7.4? whoops I just installed it. It seems to be working ok though. Thanks for the style, it is very clean and neat I like it a lot!

lovelypk
11-09-2008, 07:20 PM
Would love to see round corners in this style.

steve1966
11-13-2008, 10:04 AM
Hi as this been released for 3.74 yet ?

Sym0n
11-20-2008, 01:35 PM
Hi as this been released for 3.74 yet ?
There's no changes needed for 3.7.4. I've been running it without problem since 3.7.4 was rolled out. It will flag up on the ACP if anything needs fixing anyway. :)

@ HaYLaZ

Will this style be available for 3.8.x when that goes gold?

Also is there anyway I can change the background colour for a repeating image? Basically want to make a quick change to this style to use a snowflake image for the Christmas period.

Thanks :)

API_Mod
11-24-2008, 02:32 AM
I have Clean Blue as the default style on our forums (love it!) and am trying to get this plugin to work:

https://vborg.vbsupport.ru/showthread.php?t=177563

I know that the changes need to be made in the header in the nvlink section but whenever I add $cyb_paypal_donate_link it skews the header and won't show anything that would come after the "Donate" link. The $cyb_paypal_donate_link text is what is required to get the link to show per the Cyb PayPal hack.

Might you have any ideas for me to try?

Thanks!

HaYLaZ
11-24-2008, 12:00 PM
Any chance on getting this working for 3.7.4?

SD

yes

Would love to see round corners in this style.

may be in next release:)

Hi as this been released for 3.74 yet ?

not 374 but you can use it with 374

There's no changes needed for 3.7.4. I've been running it without problem since 3.7.4 was rolled out. It will flag up on the ACP if anything needs fixing anyway. :)

@ HaYLaZ

Will this style be available for 3.8.x when that goes gold?

Also is there anyway I can change the background colour for a repeating image? Basically want to make a quick change to this style to use a snowflake image for the Christmas period.

Thanks :)

not tested with 380 i have been waiting for 380 gold version to upgrade the style

I have Clean Blue as the default style on our forums (love it!) and am trying to get this plugin to work:

https://vborg.vbsupport.ru/showthread.php?t=177563

I know that the changes need to be made in the header in the nvlink section but whenever I add $cyb_paypal_donate_link it skews the header and won't show anything that would come after the "Donate" link. The $cyb_paypal_donate_link text is what is required to get the link to show per the Cyb PayPal hack.

Might you have any ideas for me to try?

Thanks!

I think somebody asked about this and ı have replied his question ı suggst you to look at the posts

API_Mod
11-24-2008, 12:46 PM
Thanks Haylaz, I read through all 27 pages and used the search feature but it looks like I overlooked the post. I'll go back through. :)

anderow
11-24-2008, 08:15 PM
Haylaz, did you get chance to look at this bug in the template?

please see attached picture. it is the same in firefox or IE and also forum members have the same issue (so its not my pc!)

When I click the < or << or > or >> arrows for if I want to go back a page, forward a page, back to the start of the thread , or to the end of the thread it does nothing.

The reason for this is because the URLs these buttons have is the same as the current page you are on in the thread!!

Any chance you could fix this please Haylaz because some of my members are moaning at me to fix it as it makes long threads very difficult to navigate.

I dont know where the code is for this or I would try and fix it myself.

it works fine in the standard vb template....

Sym0n
11-26-2008, 12:41 PM
not tested with 380 i have been waiting for 380 gold version to upgrade the style
I didn't mean straight away, but at some point down the line once gold is available.

Also could you please answer my other question regarding a repeating image being used as background for your style.

Ta

Sy

Eneswar
12-03-2008, 04:05 AM
open main css and change the alt1 and alt2 link colors what you want

I been trying to get this to work for a very long time but just havent been able to figure this out. When I do what you wrote, it even changes the colour on some other places, I just want the links in a post to be changed. Ill attach a picture.

Is there a way to do this?

mavi_ay
12-04-2008, 10:24 AM
Thanks Friend.. >Eline Saglik<

jlew24asu
12-05-2008, 06:00 PM
I have a question :)

how do I install this, without loosing any mods I have installed. basically as seemless as possible. can it be done?

steve1966
12-07-2008, 06:50 PM
Hi HaYLaZ I just updated my forum to 3.74 then tried to use this stye and got this message

This file was created using a different version of vBulletin from the one you are running.

Your version: 3.7.4
File version: 3.7.3

will you be updating the xml file please ?

so that i can use this style again thanks

Sym0n
12-08-2008, 03:36 PM
Steve,
I'm using this style on 3.7.4 PL1 with no problems, AFAIK there are no differences style wise since 3.7.2 PL2.

If you are having difficulty importing it then change the radio button for 'Ignore Style Version' from No to Yes and import it. Then just run 'Find Updated Templates' and make any changes required, if there are any.

Sy

steve1966
12-09-2008, 06:49 AM
Steve,
I'm using this style on 3.7.4 PL1 with no problems, AFAIK there are no differences style wise since 3.7.2 PL2.

If you are having difficulty importing it then change the radio button for 'Ignore Style Version' from No to Yes and import it. Then just run 'Find Updated Templates' and make any changes required, if there are any.

Sy

ok thanks i will use then

Eneswar
12-11-2008, 03:40 PM
I been trying to get this to work for a very long time but just havent been able to figure this out. When I do what you wrote, it even changes the colour on some other places, I just want the links in a post to be changed. Ill attach a picture.

Is there a way to do this?

Anyone please?

HaYLaZ
12-18-2008, 06:43 PM
Haylaz, did you get chance to look at this bug in the template?

please see attached picture. it is the same in firefox or IE and also forum members have the same issue (so its not my pc!)

When I click the < or << or > or >> arrows for if I want to go back a page, forward a page, back to the start of the thread , or to the end of the thread it does nothing.

The reason for this is because the URLs these buttons have is the same as the current page you are on in the thread!!

Any chance you could fix this please Haylaz because some of my members are moaning at me to fix it as it makes long threads very difficult to navigate.

I dont know where the code is for this or I would try and fix it myself.

it works fine in the standard vb template....

Hi. I have tested style and ı cant see a bug like you said.

Can you do this;

Admincp>>>vbulletin options>>Forum Display Options (forumdisplay)>>Change the number of Multi-Page Thread Maximum Links section

I didn't mean straight away, but at some point down the line once gold is available.

Also could you please answer my other question regarding a repeating image being used as background for your style.

Ta

Sy

Header background image's name is headarka.gif.

you can find it at styles css section like below;

.header {
background-color: #475a7d;
background-image: url(cb/cb/headarka.gif);
background-repeat: repeat-x;
margin:0 0 0 0;
padding:0 0 0 0;
}

I been trying to get this to work for a very long time but just havent been able to figure this out. When I do what you wrote, it even changes the colour on some other places, I just want the links in a post to be changed. Ill attach a picture.

Is there a way to do this?

Because lots of tables are using same table id.

example when you changed first altering color links automatically it will change all <td class="alt1"> color shemes.

Navbar links some forumhome links ect will change. So that you cant change only posts link colours.

I have a question :)

how do I install this, without loosing any mods I have installed. basically as seemless as possible. can it be done?

You must make same modifications this style too.

Hi HaYLaZ I just updated my forum to 3.74 then tried to use this stye and got this message



will you be updating the xml file please ?

so that i can use this style again thanks

I have updated style version.

Eneswar
12-18-2008, 07:50 PM
how do update style? just overwrite the xml?

Sym0n
12-18-2008, 07:55 PM
how do update style? just overwrite the xml?
Styles & Templates > Download / Upload Styles > Import Style XML File

Then just browse to the updated version of CB's XML file, select it and from the drop down menu titled 'Merge Into Style' select Clean Blue. Click the Import button. Done.

yingzhou
12-19-2008, 07:50 AM
this is my favorite theme for vbulletin. :D thanks.

jlew24asu
12-19-2008, 12:38 PM
can anyone help me fix this? (see attached)

HaYLaZ
12-21-2008, 03:36 PM
Have you reverted any templates from Clean blue Style?

first remove the style xml file (uninstall)

Than re-install.

j?rgk
12-22-2008, 02:52 AM
hi,

we have a small problem with the header logo.

the logo must more to the left site.

what can we do there? can you add me the code, that the logo is more left (without the placeholder)?

sorry for my bad english :) i hope you understand what i meen :)

jlew24asu
12-22-2008, 10:15 AM
Have you reverted any templates from Clean blue Style?

I dont know what that means :confused:


first remove the style xml file (uninstall)

Than re-install.

HaYLaZ
12-23-2008, 08:55 AM
hi,

we have a small problem with the header logo. you can see it on www.game-szene.de

the logo must more to the left site.

what can we do there? can you add me the code, that the logo is more left (without the placeholder)?

sorry for my bad english :) i hope you understand what i meen :)

open main css>>additional css section for clean blue.Search the code below;

.header {
background-color: #475a7d;
background-image: url(cb/cb/headarka.gif);
background-repeat: repeat-x;
margin:0 0 0 0;
padding:0 0 0 0;
}

and change margin option what you want

Example

.header {
background-color: #475a7d;
background-image: url(cb/cb/headarka.gif);
background-repeat: repeat-x;
margin-left: -10px;
padding:0 0 0 0;
}
you can change the -10px what you want

I dont know what that means :confused:

I asked that Have you reversed your templates to original?

j?rgk
12-23-2008, 09:16 AM
hi,

i didn´t help. the logo goes not to the start of the site..........

j?rgk
12-23-2008, 09:26 AM
if i change this code

.logo {padding-left:10px;}

in

.logo {padding-left:-10px;}

it will work................:)

jlew24asu
12-23-2008, 10:51 AM
I asked that Have you reversed your templates to original?

no I have not :)

GamerKeys
12-23-2008, 10:07 PM
Very nice, clean, style. Although I am not using it, I just wanted to hop in to say good job!

steve1966
12-25-2008, 10:39 AM
Hi HaYLaZ Will this style work with 3.8 ?

WrestleRealm
12-28-2008, 02:40 AM
Just a question why are there no logos or buttons? see below and everything looks funky any idea how to fix this?
http://img168.imageshack.us/img168/1686/45373734hl6.png
http://img168.imageshack.us/img168/9564/54450318um5.png

Sycoloco1212
12-28-2008, 03:03 AM
Just a question why are there no logos or buttons? see below and everything looks funky any idea how to fix this?
http://img168.imageshack.us/img168/1686/45373734hl6.png
http://img168.imageshack.us/img168/9564/54450318um5.png

check your image paths, doesnt seem like you put the directory for the style in the right place.

ProjectDIBS
01-02-2009, 02:04 AM
Hey there,

Fabulous style, installed :)

I do have a couple of questions, I am fairly new to mods, so please forgive the probably easy questions:

1. Is there an easy way to modify the forums index.php page to add an announcement window between the navbar and where is says "Welcome, username...". I would like to be able to add a global announcement on the forums index.php page so my users can see important messages. Again, ideally, I would like to be able to use the Announcements Manager to control the announcements.

2. Minor issue. I changed the color of unvisited and visited links so visitors could tell which forums and threads they have visited. On my Mac this works great in Firefox and Safari, but on my PC the visited links do not change color (so the users can't tell which forums or threads they have read). This sounds like a browser issue, but any thoughts?

Thanks a lot for your great work!

B.

YeMojuD
01-07-2009, 05:38 AM
I use This Template, it's very very nice and light.

But I upgrade 3.7.4 to 3.7.5

after this upgrade when go to AdminCP, receive this Warrning for template upgrade:

forumhome_forumbit_level1_nopost
Default Template Updated in vBulletin 3.7.5 by Jelsoft
Your Custom Template Last Edited in vBulletin 3.7.0 Beta 4 by haylaz

What I Do?

movslow
01-07-2009, 04:04 PM
After downloading the new version & unzipping it, there isn't a product/skin to install for the xml?

:confused:

HaYLaZ
01-09-2009, 05:20 AM
Hi HaYLaZ Will this style work with 3.8 ?

Not tested with 3.8.0 yet bu must be work with ignore style version option

Just a question why are there no logos or buttons? see below and everything looks funky any idea how to fix this?
http://img168.imageshack.us/img168/1686/45373734hl6.png
http://img168.imageshack.us/img168/9564/54450318um5.png

firs open zip file upload cb folder which waas located at upload folder.

You must upload Cb folder to your forums root directory not images or other. Directly oyu must upload it to near forum's index.php

Hey there,

Fabulous style, installed :)

I do have a couple of questions, I am fairly new to mods, so please forgive the probably easy questions:

1. Is there an easy way to modify the forums index.php page to add an announcement window between the navbar and where is says "Welcome, username...". I would like to be able to add a global announcement on the forums index.php page so my users can see important messages. Again, ideally, I would like to be able to use the Announcements Manager to control the announcements.

2. Minor issue. I changed the color of unvisited and visited links so visitors could tell which forums and threads they have visited. On my Mac this works great in Firefox and Safari, but on my PC the visited links do not change color (so the users can't tell which forums or threads they have read). This sounds like a browser issue, but any thoughts?

Thanks a lot for your great work!

B.

1. open forumhome template aNnd find

$navbar

add your annoucement codes below this.

2. you must add a:visited option to your Css for internet explorer6

New generation browsers doesnt need to a:visited option but especially explorer 6 needs this code.

I use This Template, it's very very nice and light.

But I upgrade 3.7.4 to 3.7.5

after this upgrade when go to AdminCP, receive this Warrning for template upgrade:

forumhome_forumbit_level1_nopost
Default Template Updated in vBulletin 3.7.5 by Jelsoft
Your Custom Template Last Edited in vBulletin 3.7.0 Beta 4 by haylaz

What I Do?

dont worry:)

After downloading the new version & unzipping it, there isn't a product/skin to install for the xml?

:confused:

its located at dontupload/xml folder

christicehurst
01-09-2009, 10:31 AM
The theme works well in 3.8 however the mods are not good.

Kihon Kata
01-09-2009, 07:12 PM
I got a weird one. I use this style. After upgrading from 3.7.4 to 3.7.5, my navbar now is intermittent. Sometimes showing sometimes not. Any ideas Haylaz?

HaYLaZ
01-10-2009, 04:11 PM
I got a weird one. I use this style. After upgrading from 3.7.4 to 3.7.5, my navbar now is intermittent. Sometimes showing sometimes not. Any ideas Haylaz?


I suggest you to reinstall the style.

Kihon Kata
01-10-2009, 08:09 PM
I suggest you to reinstall the style.
Actually, the problem was with xcache. Once I disabled it on my dedicated server, my problem went away.

christicehurst
01-11-2009, 02:15 AM
Some of the 3.8 mods won't work so I think a 3.8 version of this style is needed

HaYLaZ
01-11-2009, 09:56 AM
Some of the 3.8 mods won't work so I think a 3.8 version of this style is needed

I will update style as soon as possible.

Eneswar
01-12-2009, 04:08 AM
I have Clean Blue as the default style on our forums (love it!) and am trying to get this plugin to work:

https://vborg.vbsupport.ru/showthread.php?t=177563

I know that the changes need to be made in the header in the nvlink section but whenever I add $cyb_paypal_donate_link it skews the header and won't show anything that would come after the "Donate" link. The $cyb_paypal_donate_link text is what is required to get the link to show per the Cyb PayPal hack.

Might you have any ideas for me to try?

Thanks!



I have the exact same problem, I know you replied him that you already answered that question, I did read every single page but i can for sure say that you have not.

The one you replied for was some AWdonation something, this is with CybPayPal.

The code we are supose to add is "$cybpaypal_donlist_link" and when you add it in header it shows up like this:

https://vborg.vbsupport.ru/external/2009/01/43.png

Would appreciate if you would help

metin
01-12-2009, 11:34 AM
Thanks man... Sağol Kardeşim temayı siteye kurucam güzel tema eline sağlık..

christicehurst
01-12-2009, 11:41 PM
I have the exact same problem, I know you replied him that you already answered that question, I did read every single page but i can for sure say that you have not.

The one you replied for was some AWdonation something, this is with CybPayPal.

The code we are supose to add is "$cybpaypal_donlist_link" and when you add it in header it shows up like this:

https://vborg.vbsupport.ru/external/2009/01/43.png

Would appreciate if you would help

That was a issue I had with another mod.

Eneswar
01-13-2009, 12:16 AM
Did you fix it somehow? Im still waiting for support from the author...

christicehurst
01-13-2009, 03:30 AM
Sorry I couldn't. Had to un-install it.

pimpompoy
01-13-2009, 05:35 AM
please update to 3.8.0 thy...

River_rush
01-15-2009, 04:08 PM
runs just fine on 3.8 with some minor tweaks

Program
01-16-2009, 07:19 AM
installed.

Eneswar
01-17-2009, 09:23 AM
Please update to 3.7.5 forum home looks wierd when trying to update on my test server

Kihon Kata
01-17-2009, 12:32 PM
I'm running this style on a 3.7.5 board here (http://www.makeuptalk.com/forums/) and a 3.8 board here (http://www.makeuptalk.com/testdev/)

edytwinky
01-17-2009, 04:04 PM
Great style! Two thumbs up.

Using it on 3.7.4 right now

Mohsen71
01-18-2009, 06:12 PM
plz up to 3.8.0

cooltechie
01-19-2009, 04:09 AM
When I install this mod (https://vborg.vbsupport.ru/showthread.php?t=201308) it doesn't automatically update the menu area. Works fine on other styles.

iRoamer
01-19-2009, 06:54 PM
I love this layout, i use it all the time! THANKS!

srkrocks
01-20-2009, 04:19 AM
lovely skin thanks man!

Graphictr
01-21-2009, 03:54 AM
Super nice man

akee
01-21-2009, 06:01 PM
can you upgrade it to vb 3.8?
i find a little problem by social group

HaYLaZ
01-22-2009, 06:38 PM
Updated Vbulletin 3.8.0

Updated Version Can Be found At 3.8.0 Templates Section


or

https://vborg.vbsupport.ru/showthread.php?t=202746

Kihon Kata
01-23-2009, 02:24 AM
Updated Vbulletin 3.8.0

Updated Version Can Be found At 3.8.0 Templates Section


or

https://vborg.vbsupport.ru/showthread.php?t=202746
What's diff about it?

HaYLaZ
01-23-2009, 07:25 AM
Vbulletin 3.8.0 version added to 3.8.0 Styles Section

Eneswar
02-01-2009, 09:27 PM
Can you please make a new button called " New Video" ?

Thank you

HaS?R
02-10-2009, 05:50 PM
Thanks.Looks Great.

Eneswar
02-27-2009, 02:16 AM
Can you please make a new button called " New Video" ?

Thank you

Haylaz you think you can do this?
I know there is a PSD file but i dont have that font...
Can you tell me where to get that font so i can make the button myself?

NikosN
03-10-2009, 08:30 AM
Thank you! :)

letsjoy
04-30-2009, 02:36 PM
Amazing theme, Best syltish simple...keep it up man
Man update it for vBulletin® 3.8.2
Thanks

Kinneas
12-29-2009, 09:53 AM
I know this is wishful thinking, but are you likely to develop this for vB4 too?