[Release] Supernova (phpBB 3.0.8)

For style authors to post and receive feedback on 3.0.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
Scam Warning
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian

Re: [Release] Supernova (3.0.7)

Post by PlanetStyles.net »

Sweet edits Nawid! :) - it's just too bad I don't understand a single word on your site...and too bad you support Holland. No way you're winning the World Cup this year ;)

...back to topic, your site looks awesome. Love seeing people's improvisations of my work :) .
User avatar
Nawid
Registered User
Posts: 329
Joined: Sat Jun 27, 2009 4:32 pm

Re: [Release] Supernova (3.0.7)

Post by Nawid »

Boardtalk.net wrote:Nawid,
That's really, really nice work and show's how good this theme is.
Well done,
:D
Thank you 8-)
Christian 2.0 wrote: your site looks awesome. Love seeing people's improvisations of my work :)
Thank you Christian, this wasn't possible without your support and help :D
Christian 2.0 wrote:Sweet edits Nawid! :) - it's just too bad I don't understand a single word on your site...and too bad you support Holland. No way you're winning the World Cup this year ;)
We shall see, they already scored 2 goals ( actually 1, you know what I mean :lol: )
Image
Check SuperNova Orange style on:
SchoolLife.nl
phpBB.com
reVvo !
Registered User
Posts: 35
Joined: Mon May 17, 2010 6:34 pm

Re: [Release] Supernova (3.0.7)

Post by reVvo ! »

Is better to add this line?
sn-nli-form
cursor: text;

Is there any way to hide / show the forums?

Image

https://camo.phpbb.com/47ab8dfcf92b041b46b118b503937a3d566ce47e/687474703a2f2f696d673139302e696d616765736861636b2e75732f696d673139302f333738332f646962756a6f726c7a2e6a7067

And is there a way for users to change the font size?

Thank you very much Christian, we all cherish what you do
User avatar
Boardtalk.net
Registered User
Posts: 1245
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette

Re: [Release] Supernova (3.0.7)

Post by Boardtalk.net »

reVvo ! wrote:Is better to add this line?
...
Image
...
Hi reVvo,
It looks like your using Absolution, you should ask your question in that style's support topic here;
Link:Absolution - support

Hope that helps,
;)
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian

Re: [Release] Supernova (3.0.7)

Post by PlanetStyles.net »

@reVvo: The animated collapse category script wouldn't work with the draggable category script. They just kept conflicting and causing all kinds of problems.
demon327
Registered User
Posts: 847
Joined: Thu Nov 16, 2006 2:16 pm

Re: [Release] Supernova (3.0.7)

Post by demon327 »

Christian 2.0 wrote:@reVvo: The animated collapse category script wouldn't work with the draggable category script. They just kept conflicting and causing all kinds of problems.
Maybe make use of the toggle function in Jquery,this with a cookie remembering the stat and the ID of the category.....

i'm using the follwing JS to remember the a certain state of a certain div, is it open, or is it clossed, maybe you can use it:

Code: Select all

/*orginal code by bramme.net   *
* Adjusted by demon            *
*                              *
********************************/

/********************************************
*You can adjust the following settings:     *
*expire date                                *
*Path                                       *
*Domain                                     *
* More info, see                            *
*http://www.quirksmode.org/js/cookies.html  *
********************************************/

$(document).ready(function() {
			
			// the div that will be hidden/shown
			var panel = $("#slidediv");
			//the button that will toggle the panel
			var button = $("#toggle");
			// do you want the panel to start off collapsed or expanded?
			var initialState = "expanded"; // "expanded" OR "collapsed"
			// the class added when the panel is hidden
			var activeClass = "hidden";
			// the text of the button when the panel's expanded
			var visibleText = "hide";
			// the text of the button when the panel's collapsed
			var hiddenText = "show";
			
			
			//---------------------------
			// don't    edit    below    this    line,
			// unless you really know what you're doing
			//you may only, and only edit ://
			//******************************
			//Hide the toolbar drawer      *
			//Show the toolbar drawer      *
			//domain:'mydomain.tld         *********
			//path: '/' -->won't be needed normaly!*
			//**************************************
			// end of allowd edit//
			//---------------------------
			
			if($.cookie("panelState") == undefined) {
				$.cookie("panelState", initialState);
			} 
			
			var state = $.cookie("panelState");
			
			if(state == "collapsed") {
				panel.hide();
				button.text(hiddenText);
				button.addClass(activeClass);
			}
		   
			button.click(function(){
				if($.cookie("panelState") == "expanded") {
					$.cookie("panelState", "collapsed", { /*The cookie should "never" expire.*/ expires: 36500/*, path: '/', domain:''*/});
					button.text(hiddenText);
					$("#toggle").attr('title', 'Show the toolbar drawer');
					$('#toolbar a.toggle')
                    button.addClass('toggle-active');
					button.addClass(activeClass);
				} else {
					$.cookie("panelState", "expanded", { /*The cookie should "never" expire.*/ expires: 36500/*, path: '/', domain:''*/});
					button.text(visibleText);
					$("#toggle").attr('title', 'Hide the toolbar drawer');
					button.removeClass('toggle-active');
				}
				
				panel.slideToggle(400);
				
				return false;
			});
		});
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian

Re: [Release] Supernova (3.0.7)

Post by PlanetStyles.net »

Thanks, it was the jQuery toggle function (also supported by cookies) which I was using although slightly different to your script so I'll look into it.

Collapsible categories aren't a priority though, they're not even on my "to do" list.
demon327
Registered User
Posts: 847
Joined: Thu Nov 16, 2006 2:16 pm

Re: [Release] Supernova (3.0.7)

Post by demon327 »

Christian 2.0 wrote:Thanks, it was the jQuery toggle function (also supported by cookies) which I was using although slightly different to your script so I'll look into it.

Collapsible categories aren't a priority though, they're not even on my "to do" list.
it's not my script, but i had to adjust it for a "toolbar" mod that i made, and it works just great with remembering the state .

OW, and before i forget, your theme rules... mad my own personal version of it:
http://www.plaatjesdump.nl/upload/be0cc ... 0cc131.jpg

and i'm making use of the Jquery UI dialog features to let the user know they have a new PM;
http://jqueryui.com/demos/dialog/#modal-message
reVvo !
Registered User
Posts: 35
Joined: Mon May 17, 2010 6:34 pm

Re: [Release] Supernova (3.0.7)

Post by reVvo ! »

Do you have the SOURCE of the icons?

I need to make a button for quick reply and quick edit
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian

Re: [Release] Supernova (3.0.7)

Post by PlanetStyles.net »

Check the first post for a .psd download. :)

There isn't a .psd for the "edit" button. You'll have to improvise.
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian

Re: [Release] Supernova (3.0.7)

Post by PlanetStyles.net »

Important info for users of the "mChat MOD":
Some users of the popular mChat MOD have discovered that installing the MOD on Supernova either stops the MOD from working, or stops certain parts of the style from working. This is because the mChat MOD makes its own reference to jQuery and the cookie plugin, whilst Supernova already has these. The conflict between the two is what's causing the problems.

To fix, open: /styles/supernova/template/overall_header.html

Find:

Code: Select all

<!-- IF S_MCHAT_ENABLE -->
<script type="text/javascript" src="{ROOT_PATH}mchat/jquery_core_mini.js"></script>
<script type="text/javascript" src="{ROOT_PATH}mchat/jquery_cookie_mini.js"></script>
<link rel="stylesheet" href="{ROOT_PATH}mchat/mchat_prosilver.css" type="text/css" />
<!-- ENDIF -->
Remove the connection to jQuery and cookie plugin to create:

Code: Select all

<!-- IF S_MCHAT_ENABLE -->
<link rel="stylesheet" href="{ROOT_PATH}mchat/mchat_prosilver.css" type="text/css" />
<!-- ENDIF -->
Note that you may be required to clear your template cache in order for phpBB to recognise the changes you've made. If you do perform the edit above, you should be safe to remove the associated jQuery and cookie styles from your server.

If anyone notices problems with other MODs please let me know. Thanks :)[/b]
User avatar
callumacrae
Former Team Member
Posts: 2662
Joined: Tue Feb 12, 2008 12:28 pm
Location: London, UK
Name: Callum Macrae

Re: [Release] Supernova (3.0.7)

Post by callumacrae »

All your styles are soo nice! :D

~Callum
macr.ae = my website. you probably won't like it.
Proud user ofProud user of
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian

Re: [Release] Supernova (3.0.7)

Post by PlanetStyles.net »

Thank you very much :)
User avatar
Boardtalk.net
Registered User
Posts: 1245
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette

Re: [Release] Supernova (3.0.7)

Post by Boardtalk.net »

Hi Christian,

In IE the Advertisement Management Mod on the top of the index page displays incorrectly, it looks fine in Firefox, G Chrome and A Safari. In IE it sit’s a little under and behind the first forum category.

Image

I've tried placing the {ADS_1} code in various places around the area below but it makes no difference in IE.
overall_header.html

Code: Select all

</head>

<body id="phpbb" class="section-{SCRIPT_NAME} {S_CONTENT_DIRECTION}">
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN and (U_MCP or U_ACP) or U_RESTORE_PERMISSIONS -->
<!-- INCLUDE arcade/arcade_info_body.html -->

<div class="sn-header-alert">
<!-- IF S_BOARD_DISABLED --><img src="{T_THEME_PATH}/images/exclamation.png" width="16" height="16" alt="" /> {L_INFORMATION}: {L_BOARD_DISABLED}<!-- ENDIF --><!-- IF S_BOARD_DISABLED and U_RESTORE_PERMISSIONS -->&nbsp;&bull;&nbsp;<!-- ENDIF -->
<!-- IF U_RESTORE_PERMISSIONS --><img src="{T_THEME_PATH}/images/user_go.png" width="16" height="16" alt="" /> <a href="{U_RESTORE_PERMISSIONS}">{L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
</div><!-- /sn-header-alert -->
		{ADS_1}
<!-- ENDIF -->

<div id="sn-header">

<a id="top" name="top" accesskey="t"></a>
<div id="sn-header-content">
<a id="sn-logo" href="{U_INDEX}"><img src="{T_IMAGESET_PATH}/site-logo-{SITE_LOGO_RANDOM}.png" width="484" height="100" alt="" /></a>

<div id="sn-controlbox">

<!-- IF not S_USER_LOGGED_IN and not S_IS_BOT --
Thanks again,
;)
tiwul
Registered User
Posts: 2
Joined: Fri Jun 18, 2010 3:29 pm

Re: [Release] Supernova (3.0.7)

Post by tiwul »

hi Christian,
your style so nice. great job :P

how to change font size.? i want to change smaller font size for total post and total topic.
Image

thank you very much

Return to “[3.0.x] Styles in Development”