vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=247)
-   -   Suite Style - [ThevBNinja.com] Pure Christmas 2012 (Add-ons Snow with options, light, countdown) (https://vborg.vbsupport.ru/showthread.php?t=274245)

kylek 12-07-2011 12:38 AM

1 Attachment(s)
Dont know if this is fixed in the planned update but will point it out, same on mine as it is on your demos.

On profile page, side column blocks the red comes down a bit of the ways on the sides:


Attachment 134884

Also I dropped the toplinks down to the navbar and so far cant find the setting for the padding around the username/password/log in area when unregistered, probably staring right at it but no luck so far. Hoping you can point it out when you have a spare monent.

Attachment 134885

And thanks for making this style for all of us to use!!

ThevBNinja 12-07-2011 12:52 AM

Firstly,

@Mamma Scarlett: Thank you for your great support and helping others here, I really much appreciated!

Quote:

Dont know if this is fixed in the planned update but will point it out, same on mine as it is on your demos.

On profile page, side column blocks the red comes down a bit of the ways on the sides:
it was made that way. In order to fit the widget and sidebar block on CMS and forumhome. The profile is customize-able in vbulletin and as it style is only a theme for season, limited time of year,I don't have it on the schedule for next upgrade.

Quote:

Also I dropped the toplinks down to the navbar and so far cant find the setting for the padding around the username/password/log in area when unregistered, probably staring right at it but no luck so far. Hoping you can point it out when you have a spare monent.
Add this line to your additional.css

Code:

.toplinks .logindetails {
    background: none repeat scroll 0 0 transparent;
 }

Secondly, honestly, I have very limit time at the moment due to large of custom projects, however I will try my best to bring a final version of this style will be available within 14.12.2011 (on my schedule) as my thank you to you guys for your support on this style. Growing pretty fast.

Please keep on touch!

Regards,
ThevBNinja

Mamma Scarlett 12-07-2011 05:56 AM

Quote:

Originally Posted by ThevBNinja (Post 2275371)
Firstly,

@Mamma Scarlett: Thank you for your great support and helping others here, I really much appreciated!

You're welcome. I think it's fun to be able to help others. But when it comes to the bigger problems I'm not much help. I had never touched a vBulletin forum as admin before June this year. I'm happy to help others with what little I can.

Krusty1231 12-07-2011 06:43 AM

1 Attachment(s)
@ Spottysocks

Use this PSD. Open it and edit the font/color, and what you want it to say. Then save it as "logo.png" and upload it to \images\styles\xmas allowing overwrite.

SpottySocks 12-07-2011 12:47 PM

Quote:

Originally Posted by Mamma Scarlett (Post 2275321)
I see the same as before.

I don't mind helping. :)

Quote:

Originally Posted by Krusty1231 (Post 2275447)
@ Spottysocks

Use this PSD. Open it and edit the font/color, and what you want it to say. Then save it as "logo.png" and upload it to \images\styles\xmas allowing overwrite.

Thanks guys, I have downloaded and changed the logo.psd file and re-uploaded it and overwrite. I refreshed page and really got my hopes up as it was there, next moment when I refreshed again it went back to that old logo. This is getting me down now. :lol: So close to giving up and uninstalling as I seem to be getting nowhere, but I love the theme and really want to use it without having this problem!! :(

This is a screenshot from now:

https://vborg.vbsupport.ru/external/2011/12/37.png

ThevBNinja 12-07-2011 01:19 PM

Quote:

Thanks guys, I have downloaded and changed the logo.psd file and re-uploaded it and overwrite. I refreshed page and really got my hopes up as it was there, next moment when I refreshed again it went back to that old logo. This is getting me down now. :lol: So close to giving up and uninstalling as I seem to be getting nowhere, but I love the theme and really want to use it without having this problem!!

This is a screenshot from now:
This theme is using the logo.png located at images/styles/xmas/

there are various ways to change the logo.

Note: Logo MUST HAVE a transparent bg.

1. Open the logo.psd. Edit your own text , own taste then reuplace it with current logo.png
2. You can even open the default logo.png in photoshop, the .png file have a transparent bg already, delete the current text, add your owns, replace it.

If you didn't change the structure of header, then I don't find any reason why the new logo doesn't work.

Joemadden1989 12-07-2011 04:14 PM

Hi all,

This skin is fantastic! Thanks,

However i have an issue with this code :

Code:

<!-- Snow by thevBNinja.com -->



<!-- for the Snowstorm homepage, allow the demo to run on iPhone and mobile devices. -->
<script>snowStorm.excludeMobile = false;</script>
<script src="images/styles/xmas/light/soundmanager2-nodebug-jsmin.js"></script>
<script src="http://yui.yahooapis.com/combo?2.6.0/build/yahoo-dom-event/yahoo-dom-event.js&2.6.0/build/animation/animation-min.js"></script>
<script src="images/styles/xmas/light/christmaslights.js"></script>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
        <script src='images/styles/xmas/snow2/snowfall.min.jquery.js'></script>
        <script type='text/javascript'>       
                $(document).ready(function(){
                        //Start the snow default options you can also make it snow in certain elements, etc.
                        //$(document).snowfall();
                        $(document).snowfall({round : true, minSize: 5, maxSize:8});               


                        $("#clear").click(function(){
                                $(document).snowfall('clear'); // How you clear
                        });
                       
                        $("#round").click(function(){
                                $(document).snowfall('clear');
                                $(document).snowfall({round : true, minSize: 5, maxSize:8}); // add rounded
                        });
                       
                        $("#shadows").click(function(){
                                $(document).snowfall('clear');
                               
                               
                                $(document).snowfall({shadow : true, flakeCount:200}); // add shadows
                        });

                        $("#roundshadows").click(function(){
                                $(document).snowfall('clear');
                                $(document).snowfall({shadow : true, round : true,  minSize: 5, maxSize:8}); // add shadows
                        });
                       
                        $("#collection").click(function(){
                                $(document).snowfall('clear');
                               
                               
                                $(document).snowfall({collection : '.collectonme', flakeCount : 250});
                        });
                });
                </script>

If i have it in the hedinclude as above then the slow works, If i change it to this :

Code:

<!-- Snow by thevBNinja.com -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
        <script src='images/styles/xmas/snow2/snowfall.min.jquery.js'></script>
        <script type='text/javascript'>       
                $(document).ready(function(){
                        //Start the snow default options you can also make it snow in certain elements, etc.
                        //$(document).snowfall();
                        $(document).snowfall({round : true, minSize: 5, maxSize:8});               


                        $("#clear").click(function(){
                                $(document).snowfall('clear'); // How you clear
                        });
                       
                        $("#round").click(function(){
                                $(document).snowfall('clear');
                                $(document).snowfall({round : true, minSize: 5, maxSize:8}); // add rounded
                        });
                       
                        $("#shadows").click(function(){
                                $(document).snowfall('clear');
                               
                               
                                $(document).snowfall({shadow : true, flakeCount:200}); // add shadows
                        });

                        $("#roundshadows").click(function(){
                                $(document).snowfall('clear');
                                $(document).snowfall({shadow : true, round : true,  minSize: 5, maxSize:8}); // add shadows
                        });
                       
                        $("#collection").click(function(){
                                $(document).snowfall('clear');
                               
                               
                                $(document).snowfall({collection : '.collectonme', flakeCount : 250});
                        });
                });
                </script>


<script>snowStorm.excludeMobile = false;</script>
<script src="images/styles/xmas/light/soundmanager2-nodebug-jsmin.js"></script>
<script src="http://yui.yahooapis.com/combo?2.6.0/build/yahoo-dom-event/yahoo-dom-event.js&2.6.0/build/animation/animation-min.js"></script>
<script src="images/styles/xmas/light/christmaslights.js"></script>

If i have it like this then the lights work!

I simply cannot get both to work at the same time..

Does anyone have idea ideas?

The error message i appear to get is [17:25:30.720] $(document) is null @ http://www.vs-uk.co.uk/forum.php:66

Thanks

Joe.

ThevBNinja 12-07-2011 05:24 PM

Hi,

THe problem with snow combine with lights will be fixed on next releases. However I need to find time from my curent schedules, then it will be when it's ready.

Regards and thanks,

kfyonur 12-08-2011 07:08 AM

new year is coming :)

Ath3na 12-08-2011 03:11 PM

Does anyone else have a problem with the snow hardly showing?

When you click on the login button you get the standard blank page for a moment, the snow looks perfect here.

Looking forward to seeing the next release. Keep up the good work

Joemadden1989 12-08-2011 08:27 PM

Hi there,

Does anyone know why the lights fail to show up correctly? They are see able for some people but not others..

I have the countdown but not the snow mod.

Thanks

Joe.

kylek 12-08-2011 09:21 PM

Quote:

Originally Posted by Joemadden1989 (Post 2276009)
Hi there,

Does anyone know why the lights fail to show up correctly? They are see able for some people but not others..

I have the countdown but not the snow mod.


Thanks

Joe.

Could be the screen resolutions they are using. On our site anyone using 1024 x 768 the lights do not show plus the banner is a bit screwed up though that may be our fault with the logo.png we made. Strange thing is by moving mouse across where lights should show you do see the breaking lights. On higher resolutions they show with no problems.

On the fluid demo it does the same, lights show, set screen res to 1024, refresh page lights disappear.

Maxii 12-09-2011 06:02 AM

http://img40.imageshack.us/img40/3104/43372341.jpg

pls help

Mamma Scarlett 12-09-2011 12:08 PM

Maxii: I'm not quite sure if I understood your problem correctly? Is it that the forum is too wide? If so, try to go to to your admin panel and go to starvare on the christmas-style. Then search for "doc" and find "doc_width". Try setting this to 90% and see if it fixes your problem. I hope this is what you ment, because this is a screen resolution problem. If you set it to 90%, it will adapt to different screens. I had this problem on my iPad.

Mamma Scarlett 12-09-2011 12:12 PM

Hmmm... Or is it just the bottom that is to wide?

Maxii 12-09-2011 12:23 PM

yes its too wide

Mamma Scarlett 12-09-2011 12:37 PM

Did you try the doc_width? I'm not sure, but mabye it will fix all.. Worth a try...

The Rocketeer 12-10-2011 01:44 AM

I hope The Ninja can come up with the new updated version of this style with all the backgrounds and features soon, Xmas is just 15 days away.. :D

sweetpotato 12-10-2011 03:49 AM

Thank you for the nice theme. I have it works nicely except for the light

kylek 12-10-2011 07:03 PM

Anyone have this problem when using lights with the style?

I have tested this on our site and when the lights are installed the insertion of smilies gets screwed up, also you cant accept a friends request when asked to accept. When we switch over to a Xmas style with no lights everything works fine.

The Rocketeer 12-13-2011 12:19 PM

10 days till Xmas Ninja, this is a once a year thing, this time of the year, are you are gonna come up with that update or should we all just install the old style we have here :)

garybrun 12-16-2011 10:58 AM

Thanks for the hard work.
Voted for and installed.

Gary

Dennis13 12-17-2011 09:13 PM

Version 4.1.9? Thanks ;)

EuroBeat2 12-21-2011 06:39 AM

Quote:

Originally Posted by The Rocketeer (Post 2277336)
or should we all just install the old style we have here :)

I think the answer is now obvious. On the other hand too bad Ninja did not find the time to update the style, but it is still very good the way it is and it works (I never installed lights and adjustable snow). Everyone likes it on my site.

EB

Maxii 12-21-2011 11:07 AM

version 4.1.9?

Popa Andrei 12-22-2011 10:42 PM

the snow was ripping mi forum load :))
i removed it.The theme is AWSEOME

sixxkilur 12-22-2011 11:10 PM

1 Attachment(s)
I change the icons of this theme to look better
Live Demo Here

Markos 12-23-2011 12:44 AM

uninstalled lot of my users reporting they cant login and after a while they get logged back out * only in this style* so removed till sorted

cs28702 12-23-2011 06:09 PM

Your theme rocks, sir. I do appreciate it very much. If you want some work, I'll be happy to hire you.

idhk 12-23-2011 06:41 PM

Not sure how anyone can not like this style. Xmas wise i think its the best i have ever seen. Which will explain why everyone loves it. Make sure you guys Nominate this. http://snpr.cm/X0HazC.png I put this on about 1 week ago. Thanks for everyone who posted their errors so VBninja could fix them. Working on vb.4.1.9 Like a charm i think i love u Ninja lol Members are loving the xmas feeling. Thanks for all your hard work. :up:

The Rocketeer 12-24-2011 12:33 PM

Anyone have this? I am having trouble with the snow, As soon as I installed the lights the snow stopped!

EuroBeat2 12-24-2011 03:46 PM

Quote:

Originally Posted by The Rocketeer (Post 2280667)
Anyone have this? I am having trouble with the snow, As soon as I installed the lights the snow stopped!

Ninja was going to fix it, but it never happened. You probably should stick with just one of them to be on the safe side.

EB

kfyonur 12-24-2011 03:48 PM

when will you fix the lights ?

Shadow 12-24-2011 09:13 PM

Nice theme man! Installed. Keep up the great work!

The Rocketeer 12-25-2011 11:23 AM

Quote:

Originally Posted by EuroBeat2 (Post 2280705)
Ninja was going to fix it, but it never happened. You probably should stick with just one of them to be on the safe side.

EB

I uninstalled the snow adon but lights still dont work anymore, it worked on my other pc but not anymore :( anybody got a solution?

Goodfather 12-25-2011 12:26 PM

Light mode does not work :(

vb 4.0.8

Popa Andrei 12-25-2011 04:01 PM

where is the script inserted in your template?

Goodfather 12-25-2011 08:29 PM

Everything is done according to the instructions above...

kfyonur 12-26-2011 07:43 AM

Light mode does not work too..from 4.1.8 to 4.1.9

Bryanek 12-26-2011 08:10 PM

Seem i cant find a headinclude template in my 4.1.3 version

Any clue how to install that snow plugin then?

EDIT: Nvm, everything works perfectly

Ty!


All times are GMT. The time now is 02:21 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.01543 seconds
  • Memory Usage 1,848KB
  • 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
  • (3)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)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