vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=161)
-   -   FreshBlue Template (https://vborg.vbsupport.ru/showthread.php?t=111649)

Dom.S 03-28-2006 10:00 PM

FreshBlue Template
 
Hi all,

I've just completed my first free vB template which is called FreshBlue.


Demo Forum: MotoGP Boards

Hopefully it will be useful, let me know what you think. :)

Cheers,
Dom

Update
I've updated the template to include some statusicons for the forumhome area. You can see them at the same demo link as before and the download link's the same too. If you would prefer to upgrade the template manually (I made a couple of CSS & template changes) then instructions are available here.

Update #2
You can now download FreshBlue for vB 3.6 - see this thread for details and to download.

twitch 03-29-2006 03:48 PM

Nice job :)

sensimilla 03-29-2006 04:02 PM

great job, very nice and clean skin!

yinyang 03-29-2006 04:10 PM

very very nice. looks like it loads fast alsoo.

Dom.S 03-29-2006 04:33 PM

Thanks for the comments. :) It should load more or less as fast as the default vB template as there is only a tiny amount of new markup.

Bellinis 03-29-2006 07:16 PM

Awesome looking skin!! :)

Snake 03-29-2006 08:10 PM

I'm loving it!

Viks 03-29-2006 10:18 PM

looks very nice

evenmonkeys 03-30-2006 03:47 AM

I really like that. Clicked install. =D

EricaJoy 03-30-2006 10:29 AM

oh thats very nice. *clicks install for when i install later*

yannisc 03-30-2006 11:43 AM

very nice... how much would it cost as a brand-free version?

I mean how much should I pay to you so that I have the right to remove your link?

Dom.S 03-30-2006 11:54 AM

Quote:

Originally Posted by yannisc
very nice... how much would it cost as a brand-free version?

I mean how much should I pay to you so that I have the right to remove your link?

I could have an unbranded copy sent over to you later today for ?30 (approx $50). :)

EricaJoy 03-30-2006 01:07 PM

Heya Dom, would you entertain the idea of making different color variations of this style?

Ohiosweetheart 03-30-2006 02:10 PM

I second princess's request.

I LIKE this style, Dom... very neat and clean-looking. My only problem is with the stock vBulletin forum icons. I'd really love to see different icons there. otherwise, NICE job!

EricaJoy 03-30-2006 03:01 PM

ditto on the icons...i'd like to see it maybe incorporate some of the famfamfam icons.

Ohiosweetheart 03-30-2006 08:45 PM

Good idea Princess. Altho, this being a free style, I wouldn't have any problem with creating my own forum icons for it. I WOULD, however, like to see it in a variety of colors as you suggested.

Someone else here on vb.org did that... it was awesome

Blackbeard 03-31-2006 06:33 AM

I love it and it works great, added a few of my own icons

check it out here if you want

Sharewithus

still got to sort out the post new threads but this is great work m8 very well done, my members luv it

Gbml2u 03-31-2006 07:36 AM

nod bad , but i don't like it

Dom.S 03-31-2006 08:37 AM

Quote:

Originally Posted by Blackbeard
I love it and it works great, added a few of my own icons

check it out here if you want

Sharewithus

still got to sort out the post new threads but this is great work m8 very well done, my members luv it

Thanks for posting the link, that's a nicely setup forum. :)

I've just released an updated version of the template which includes some new forumhome statusicons. You can download and demo it at the original addresses.

https://vborg.vbsupport.ru/ https://vborg.vbsupport.ru/ https://vborg.vbsupport.ru/

If you're looking to upgrade then I've added some CSS and a couple of template changes as well (just a little formatting on the 'Forum Contains New Posts' etc links) so it would probably be best to reinstall. That said, it's just to make things look a little neater and you could easily get away without it, in which case you just need to upload the new 'freshbluetemplate/statusicon' folder. If anyone would prefer to update the CSS and template changes themselves then I can post the details here.

Regarding other colour schemes... I'll think about it. ;)

Blackbeard 03-31-2006 08:58 AM

Can you upload the CSS and Template changes please.

Dom.S 03-31-2006 09:05 AM

Ok here goes:

Manual Upgrade Instructions

1) Upload new 'freshbluetemplate/statusicon' folder.
2) Open the FreshBlue main CSS and scroll right down to 'Additional CSS Definitions'. In the second of the two boxes, add the following:
Code:

.statusiconkey {
        border-width: 1px;
        border-style: solid;
        border-color: #c7d6e1;
        background-color: #f1f1f1;
        padding: 2px;
        margin: 0;
}

3) That's the CSS done, so save that.
4) Open the main 'FORUMHOME' template (in the 'Forum Home templates' section) and find the following:
Code:

<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
        <td>
                <table cellpadding="2" cellspacing="0" border="0">
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
                </tr>
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
                </tr>
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
                </tr>
                </table>
        </td>
        <if condition="!$show['guest']">
                <!-- member logout -->
                <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]"  onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
                <!-- end member logout -->
        </if>
</tr>
</table>
<!-- / icons and login code -->

Replace it with:
Code:

<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
        <td>
                <table cellpadding="2" cellspacing="0" border="0">
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" class="statusiconkey" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
                </tr>
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" class="statusiconkey" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
                </tr>
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" class="statusiconkey" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
                </tr>
                </table>
        </td>
        <if condition="!$show['guest']">
                <!-- member logout -->
                <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]"  onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
                <!-- end member logout -->
        </if>
</tr>
</table>
<!-- / icons and login code -->

And you're done. HTH. :)

Blackbeard 03-31-2006 11:00 AM

Thanks for the update, how do i get the forum_new, old and locked to display across the bootom of the forum, i think this is much better than downwards.

But i still luv it all m8 and any other improvements is most welcome

Dom.S 03-31-2006 11:25 AM

Quote:

Originally Posted by Blackbeard
Thanks for the update, how do i get the forum_new, old and locked to display across the bootom of the forum, i think this is much better than downwards.

But i still luv it all m8 and any other improvements is most welcome

This is untested, but try:

Code:

<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
        <td>
                <table cellpadding="2" cellspacing="0" border="0">
                <tr>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" class="statusiconkey" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" class="statusiconkey" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
                        <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" class="statusiconkey" border="0" /></td>
                        <td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
                </tr>
                </table>
        </td>
        <if condition="!$show['guest']">
                <!-- member logout -->
                <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]"  onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
                <!-- end member logout -->
        </if>
</tr>
</table>
<!-- / icons and login code -->


Ohiosweetheart 03-31-2006 11:30 AM

Quote:

Originally Posted by Blackbeard
I love it and it works great, added a few of my own icons

check it out here if you want

Sharewithus

still got to sort out the post new threads but this is great work m8 very well done, my members luv it

hey not bad Blackbeard! Altho the forum icons don't really match the set, this is a perfect example of how one can replace icons with their own.

Ohiosweetheart 03-31-2006 11:32 AM

Quote:

Originally Posted by Dom.S
Thanks for posting the link, that's a nicely setup forum. :)

I've just released an updated version of the template which includes some new forumhome statusicons. You can download and demo it at the original addresses.

http://www.motogpboards.com/images/f.../forum_new.gif http://www.motogpboards.com/images/f.../forum_old.gif http://www.motogpboards.com/images/f...m_old_lock.gif

If you're looking to upgrade then I've added some CSS and a couple of template changes as well (just a little formatting on the 'Forum Contains New Posts' etc links) so it would probably be best to reinstall. That said, it's just to make things look a little neater and you could easily get away without it, in which case you just need to upload the new 'freshbluetemplate/statusicon' folder. If anyone would prefer to update the CSS and template changes themselves then I can post the details here.

Regarding other colour schemes... I'll think about it. ;)

Now THOSE are nice! I'll be installing this one later today, now, with those new icons.

as for the various colors... glad to know you're thinking about it :D

Ohiosweetheart 03-31-2006 11:33 AM

Quote:

Originally Posted by Dom.S
This is untested, but try:

Code:

<!-- icons and login code -->
<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
    <td>
        <table cellpadding="2" cellspacing="0" border="0">
        <tr>
            <td><img src="$stylevar[imgdir_statusicon]/forum_new.gif" alt="$vbphrase[contains_new_posts]" class="statusiconkey" border="0" /></td>
            <td class="smallfont">&nbsp; $vbphrase[forum_contains_new_posts]</td>
            <td><img src="$stylevar[imgdir_statusicon]/forum_old.gif" alt="$vbphrase[contains_no_new_posts]" class="statusiconkey" border="0" /></td>
            <td class="smallfont">&nbsp; $vbphrase[forum_contains_no_new_posts]</td>
            <td><img src="$stylevar[imgdir_statusicon]/forum_old_lock.gif" alt="$vbphrase[a_closed_forum]" class="statusiconkey" border="0" /></td>
            <td class="smallfont">&nbsp; $vbphrase[forum_is_closed_for_posting]</td>
        </tr>
        </table>
    </td>
    <if condition="!$show['guest']">
        <!-- member logout -->
        <td align="$stylevar[right]"><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]"  onclick="return log_out()"><phrase 1="$bbuserinfo[username]">$vbphrase[log_out_x]</phrase></a></td>
        <!-- end member logout -->
    </if>
</tr>
</table>
<!-- / icons and login code -->


in which template?

Dom.S 03-31-2006 11:38 AM

Quote:

Originally Posted by Ohiosweetheart
in which template?

That would be in 'FORUMHOME' instead of my original replacement code. Like I said I haven't given that a go myself, but it should be alright.

Blackbeard 03-31-2006 11:49 AM

Thats it, i just need to center it, cheers m8

Nathan2006 04-11-2006 08:00 PM

Thank you Dom.S

Nice and clean :)

Install

JimNY 04-12-2006 05:32 AM

Awesome.......Thanks

jellybaby 04-12-2006 02:06 PM

Would be great if somehow I could work out how to fit my current banner inside the borders, is there any way?

Dom.S 04-12-2006 02:28 PM

If I was you I'd probably do something like this:

http://img57.imageshack.us/img57/8561/mumzone9xs.th.jpg

I could code something along those lines very affordably if you were interested. ;)

If not then I would suggest you have a look at replacing $vboptions[bbtitle] in the header template with your standard banner image. I'm not sure how you could add a banner inside the borders and still make it look good without bigger changes tbh.

jellybaby 04-13-2006 11:59 AM

Is anyone able to help with the following please:-

1. I am trying to add this template but make a few changes. I have found that when I change the background colour it performs differently in Firefox to Internet Explorer, if I change the font colour so it looks right in IE its out in Firefox and vice versa, any ideas please?

2. For some reason when I change the width of forum its not changing top section. Again, any ideas?

Forum can be viewed at http://www.mumszone.co.uk/forums but you need to change to Fresh Blue on bottom right hand of screen. Any help much appreciated.

Thanks

Dom.S 04-13-2006 12:15 PM

Quote:

Originally Posted by jellybaby
Is anyone able to help with the following please:-

1. I am trying to add this template but make a few changes. I have found that when I change the background colour it performs differently in Firefox to Internet Explorer, if I change the font colour so it looks right in IE its out in Firefox and vice versa, any ideas please?

2. For some reason when I change the width of forum its not changing top section. Again, any ideas?

Forum can be viewed at http://www.mumszone.co.uk/forums but you need to change to Fresh Blue on bottom right hand of screen. Any help much appreciated.

Thanks

1. I'm not sure exactly what you mean. If you're talking about the header image having a different colour around its edges I think it's fairly likely that's because IE isn't very good with PNG images. Try that as a GIF of JPEG and that problem should be fixed. You mention font colours, but they all look standard?

2. To change the overall width you need to edit #freshbluecontainer and #fbfooter in the additional CSS definitions. I have just tested changing these ids and the end result is this (only a temporary link, I'll change it back to the default later). To achieve that you need to change the forum width setting to what it was before and then make these changes:

Replace #freshbluecontainer with:
Code:

#freshbluecontainer {
        background-color: #FFFFFF;
        background-image:url(images/freshbluetemplate/bodybg.gif);
        background-position:right;
        background-repeat:repeat-y;
        width: 800px;
        margin: 0 auto;
}

Replace #fbfooter with:
Code:

#fbfooter {
        background-image:url(images/freshbluetemplate/footerbg.gif);
        background-repeat:repeat-x;
        height: 84px;
        width:800px;
        margin: 0 auto;
}

Where 800px is the width you are aiming for.

(I might as well release this as a fixed width version now I guess!)

jellybaby 04-13-2006 02:07 PM

Thanks Dom. Such a great template and fits in great with my site, I love the smooth edges as opposed to the ones I have now! Sorry it wasnt the font it was around the edges of the banner, I have the same problem with the colour on my Joomla as well!

jellybaby 04-13-2006 06:08 PM

A problem with the narrow version, when I click on get new posts the bar that has contact us, etc on at the bottom is still stretched wide! Also, when I click on the pull down list at the top the list doesnt actually show underneath them anyone else have this?

Not sure if this link works:-

http://www.mumszone.co.uk/forums/search.php?do=getnew

TomJames 04-14-2006 09:37 AM

awesome skin *clicks install*

Dom.S 04-14-2006 10:26 AM

Quote:

Originally Posted by jellybaby
A problem with the narrow version, when I click on get new posts the bar that has contact us, etc on at the bottom is still stretched wide! Also, when I click on the pull down list at the top the list doesnt actually show underneath them anyone else have this?

Not sure if this link works:-

http://www.mumszone.co.uk/forums/search.php?do=getnew

I'm happy to have a look at that for you but at the moment I can't select a different skin at all so can only view things with the standard invision boardish template. That search asks me to log in as well.

Edit: Glad you like it, TomJames. :)

Blackbeard 04-14-2006 12:26 PM

Yes its great my members luv it

TomJames 04-15-2006 08:56 AM

Sorry im a bit new to this but im not sure how to add my banner to this skin.


All times are GMT. The time now is 08:36 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01819 seconds
  • Memory Usage 1,859KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete