Page 1 of 1

When Styles Update from phpBB to the next phpBB

Posted: Tue May 01, 2012 7:15 pm
by itsallaboutmusic
What is actually changed in a style when a phpBB version changes? Example: When phpBB 3.0.10 turns to 3.11 why are styles changed and what is changed. The reason I ask, is when a site has several mods, often times the style updates require re-coding for the mods installed of which is very time consuming.

This is a great opportunity for myself and any other to learn what this process is.


Side question:

"Activity over the last 24 hours" on my site in the Areo styles is white and I'm not sure how to change the color to black. See http://www.itsallaboutmusic.net for what I'm referring to.

Re: When Styles Update from phpBB to the next phpBB

Posted: Thu May 03, 2012 7:20 pm
by spaceace
some of the functions in the styles change when the core of phpBB gets changed or recoded. simple things like forum icons get called by a different function and then the template files have to also reflect those changes.

for some of the other changes to styles is to make them xhtml compliant. like the order in which the css files have elements, some of them have to be in a certain order now.

some of the changes in my opinion are kinda dumb and not really needed. for example... in my styles, when you go to register and have to click on the button saying that you agree or disagree to the terms, phpBB will not accept the position of my buttons. i have disagree as the first button as bots are programmed to click on the first button on that page and phpBB wants the agree button set as the first one... dumb if you ask me :lol:

now, for your style question... you need to put in an inline colour element...

find
Code: Select all
<h3 id="24hour_stats">{L_24HOUR_STATS}</h3>
change to
Code: Select all
<h3 id="24hour_stats" style="color: #000000;">{L_24HOUR_STATS}</h3>
in your style the <h3> is set to #FFFFFF which is white ;)

Re: When Styles Update from phpBB to the next phpBB

Posted: Thu May 03, 2012 7:28 pm
by itsallaboutmusic
Awesome! all fixed and thanks for the education to boot! It was great chatting with you as well.

Re: When Styles Update from phpBB to the next phpBB

Posted: Fri May 04, 2012 7:19 am
by spaceace
you're welcome :)

Re: When Styles Update from phpBB to the next phpBB

Posted: Sun May 06, 2012 6:06 pm
by Gnome!
some of the changes in my opinion are kinda dumb and not really needed. for example... in my styles, when you go to register and have to click on the button saying that you agree or disagree to the terms, phpBB will not accept the position of my buttons. i have disagree as the first button as bots are programmed to click on the first button on that page and phpBB wants the agree button set as the first one... dumb if you ask me :lol:
This is set so as Spam bots and the like can get into the site and create havock! ... I like the way Space has set he buttons out and if anything it is way less complicated.


Thanks heaps for the information Spaceace :D

Re: When Styles Update from phpBB to the next phpBB

Posted: Sat May 12, 2012 2:15 pm
by Mintcopper
some of the changes in my opinion are kinda dumb and not really needed. for example... in my styles, when you go to register and have to click on the button saying that you agree or disagree to the terms, phpBB will not accept the position of my buttons. i have disagree as the first button as bots are programmed to click on the first button on that page and phpBB wants the agree button set as the first one... dumb if you ask me :lol:

"QUOTE"

In the case that bots click on the first button it only makes sense to put the disagree button first

Re: When Styles Update from phpBB to the next phpBB

Posted: Wed Jun 27, 2012 4:36 am
by jahanshazi
This was interesting.