[RC] Platinum for phpBB 3.3.13

For style authors to post and receive feedback on 3.3.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
Seneekikaant
Registered User
Posts: 7
Joined: Thu Sep 29, 2022 12:24 pm

Re: [RC] Platinum for phpBB 3.3.8

Post by Seneekikaant »

dbrewood wrote: โ†‘Tue Oct 25, 2022 1:33 pm Okay I've put the changes in grey.css and colours.css, to be honest I'm not seeing much of a change.....

Also I can't find the margin code:

Code: Select all

ul.topiclist li.row dl { margin: 1px 1px }
Can you please advise where it is found?

I thinking it might be easier for me to copy your colours and grey css files once you've completed fixing all the colour issues?

Any ideas as to how to fix the white 'Post Reply' text?
hey, sorry for the late reply, I actually haven't looked at it since my last post. everything to do with changing the colours after doing the initial setup to add a new one is done in .../theme/custom/grey.css and .../theme/colours.css

I've added to the bottom of my .../theme/colours.css :

Code: Select all

/* grey */
.grey .headerbar {
	background-color: grey;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
	background-image: linear-gradient(to bottom, grey 0%, dimgrey 100%);
}

.grey .forabg, .grey .forumbg {
	background-color: yellow;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 35px, black 100%);
	background-image: linear-gradient(to bottom, grey 0%, dimgrey 35px, black 100%);
}

.grey .pollbar5 { background-color: #a76504; }

.grey .action-bar .coloredbutton {
	border-color: black;
	background-color: gainsboro;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
	background-image: linear-gradient(to bottom, grey 0%,dimgrey 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}
.grey .action-bar .coloredbutton:hover {
	background-color: darkgrey;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
	background-image: linear-gradient(to bottom, gainsboro 0%, dimgrey 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}

.grey .pagination li.active span {
	background: dimgrey;
	border-color: whitesmoke;
}

.grey .pagination li a:hover {
	background: dimgrey;
	border-color: whitesmoke;
}
and my .../theme/custom/grey.css looks like this :

Code: Select all

.headerbar {
	background-color: grey;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
	background-image: linear-gradient(to bottom, grey 0%, dimgrey 100%);
}

.forabg, .forumbg {
	background-color: gainsboro;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 35px, black 100%);
	background-image: linear-gradient(to bottom, grey 0%, dimgrey 35px, black 100%);
}

.pollbar5 { background-color: #a76504; }

.action-bar .coloredbutton {
	border-color: black;
	background-color: gainsboro;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
	background-image: linear-gradient(to bottom, grey 0%,dimgrey 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}
.action-bar .coloredbutton:hover {
	background-color: darkgrey;
	background-image: -webkit-linear-gradient(top, grey 0%, dimgrey 100%);
	background-image: linear-gradient(to bottom, gainsboro 0%, dimgrey 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='whitesmoke', endColorstr='dimgrey',GradientType=0 );
}

.pagination li.active span {
	background: dimgrey;
	border-color: whitesmoke;
}

.pagination li a:hover {
	background: dimgrey;
	border-color: whitesmoke;
}

.navbar { background-color: grey }
.row-item {
	background-color: silver;
	color:  black;
	border-color: dimgrey;
}
.page-body { background-color: #cccccc; }
.bodycontainer { background-color: #cccccc; }
#recent-topics a.forum-link { color: slategrey; }
li.row dl { border-color: dimgrey; }
ul.topiclist dd { border-left-color: dimgrey; }
li { border-color: dimgrey; }
.forumbg .header a, .forabg .header a, th a {	color: #333; }
li.header dt, li.header dd { color: #333; }
.post.online, #viewprofile .online { background-color: silver; }
ul.topiclist li.row dl { margin: 1px 1px }

you can find all these elements scattered throughout the css files , mostly in the "colours.css", and copy them in to your new created section in colours.css, prefix them with ".grey " and they generally will update with a ctrl+F5. Any element not there already can be added there, so long as the name matches and you add the ".grey" class in front it will be overwritten by your newly chosen values.

ETA :
I'm not 100% sure the files in the custom folder are necessary, but I create them there as well, because although they don't seem to be getting read from, they're a good "backup" of sorts, like if you mess with a bunch of elements all at once and don't know what has messed up your screen you can always just copy the "sane defaults" back from your grey.css and then prefix each element with ".grey"
Last edited by Seneekikaant on Sat Nov 05, 2022 2:25 pm, edited 1 time in total.
User avatar
dbrewood
Registered User
Posts: 507
Joined: Tue Feb 09, 2021 9:35 am
Name: Daron Brewood

Re: [RC] Platinum for phpBB 3.3.8

Post by dbrewood »

Brilliant, many thanks that is appreciated.
wellikan
Registered User
Posts: 4
Joined: Tue Apr 28, 2020 7:47 pm

Re: [RC] Platinum for phpBB 3.3.9

Post by wellikan »

Tell me please. how can I increase the font or make it bold subforums on the main page?
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.10

Post by jrolson »

Platinum 1.1.11 released
*updated for phpBB 3.3.10

(Only change is template/ajax.js)
User avatar
Abraham54
Registered User
Posts: 125
Joined: Sun Feb 15, 2015 9:59 am

Re: [RC] Platinum for phpBB 3.3.10

Post by Abraham54 »

Very strange: Topic Preview does not work in Platinum.
But in Aero there is no problem with Topic Preview.
Only guests cannot use Topic Preview and this is also strange.
Member of Unite against malware and ASAP - Alliance of Security Analysis Professionals
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.10

Post by jrolson »

Abraham54 wrote: โ†‘Thu May 04, 2023 12:17 pm Very strange: Topic Preview does not work in Platinum.
But in Aero there is no problem with Topic Preview.
Only guests cannot use Topic Preview and this is also strange.
Unable to replicate on a clean install.
Any mods you are using and config.html settings?
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.11

Post by jrolson »

Platinum 1.1.12 released
*updated for phpBB 3.3.11
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.12

Post by jrolson »

Platinum 1.1.13 released
*updated for phpBB 3.3.12
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.13

Post by jrolson »

Platinum 1.1.14 released
*updated for phpBB 3.3.13
AncX
Registered User
Posts: 8
Joined: Tue Sep 01, 2020 10:45 pm

Re: [RC] Platinum for phpBB 3.3.13

Post by AncX »

Thank you, it's a really cool template, and it's good that you don't abandon its support. ๐Ÿ‘
There are a couple of errors during validation, can they be fixed?

1. Error: Bad value for attribute id on element button: An ID must not be the empty string.
<button class="colorbutton colorblue" id="" onClick="change_variant(this.id)">

2. Error: Duplicate ID nav-footer.
<ul id="nav-footer" class="nav-footer linklist" role="menubar">
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.13

Post by jrolson »

Just out of curiosity, what are you using for validation?
AncX
Registered User
Posts: 8
Joined: Tue Sep 01, 2020 10:45 pm

Re: [RC] Platinum for phpBB 3.3.13

Post by AncX »

jrolson wrote: โ†‘Mon Sep 02, 2024 7:16 pm Just out of curiosity, what are you using for validation?
w3c validator
User avatar
jrolson
Registered User
Posts: 976
Joined: Wed Jan 05, 2005 1:53 am
Location: U.S.

Re: [RC] Platinum for phpBB 3.3.13

Post by jrolson »

Fixes,

Open navbar_header.html
Find,

Code: Select all

<button class="colorbutton colorblue" id="<!-- IF $P_DEFAULT_COLOR eq 'blue' --><!-- ELSE -->blue<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorgreen" id="<!-- IF $P_DEFAULT_COLOR eq 'green' --><!-- ELSE -->green<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorpink" id="<!-- IF $P_DEFAULT_COLOR eq 'pink' --><!-- ELSE -->pink<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorpurple" id="<!-- IF $P_DEFAULT_COLOR eq 'purple' --><!-- ELSE -->purple<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorred" id="<!-- IF $P_DEFAULT_COLOR eq 'red' --><!-- ELSE -->red<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
Replace with,

Code: Select all

<button class="colorbutton colorblue" id="<!-- IF $P_DEFAULT_COLOR eq 'blue' -->#<!-- ELSE -->blue<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorgreen" id="<!-- IF $P_DEFAULT_COLOR eq 'green' -->#<!-- ELSE -->green<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorpink" id="<!-- IF $P_DEFAULT_COLOR eq 'pink' -->#<!-- ELSE -->pink<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorpurple" id="<!-- IF $P_DEFAULT_COLOR eq 'purple' -->#<!-- ELSE -->purple<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
<button class="colorbutton colorred" id="<!-- IF $P_DEFAULT_COLOR eq 'red' -->#<!-- ELSE -->red<!-- ENDIF -->" onClick="change_variant(this.id)"></button>
Open overall_footer.html
Find,

Code: Select all

id="nav-footer"
Replace with,

Code: Select all

id="nav-footer-alt"
Result,
Image
AncX
Registered User
Posts: 8
Joined: Tue Sep 01, 2020 10:45 pm

Re: [RC] Platinum for phpBB 3.3.13

Post by AncX »

Great Thanks! ๐Ÿ˜Š๐Ÿ‘ All fine!

Return to โ€œ[3.3.x] Styles in Developmentโ€