Code: Select all
/* Back to top of page */
.top i {
color: #999999;
}
Code: Select all
/* Linkcolor for forum/topic titles
-------------------------------------- */
.forum-title a {
color: #BC2A4D;
}
a.forumtitle {
color: #AA0000;
}
.topic-title a {
color: #BC2A4D;
}
a.topictitle {
color: #AA0000;
}
It is if you want a different colour for each forum
Code: Select all
.forumid-x,
.forumid-y,
.forumid-z {
color: darkred;
}
Code: Select all
.forumid-a,
.forumid-b,
.forumid-c {
color: darkgreen;
}
Code: Select all
/* phpBB3 Style Sheet
--------------------------------------------------------------
Style name: prosilver (the default phpBB 3.2.x style)
Based on style:
Original author: Tom Beddard ( http://www.subblue.com/ )
Modified by: phpBB Limited ( https://www.phpbb.com/ )
--------------------------------------------------------------
*/
@import url("normalize.css?v=3.2");
@import url("base.css?v=3.2");
@import url("utilities.css?v=3.2");
@import url("common.css?v=3.2");
@import url("links.css?v=3.2");
@import url("content.css?v=3.2");
@import url("buttons.css?v=3.2");
@import url("cp.css?v=3.2");
@import url("forms.css?v=3.2");
@import url("icons.css?v=3.2");
@import url("colours.css?v=3.2");
@import url("responsive.css?v=3.2");
@import url("mycustom.css?v=3.2");
Code: Select all
<a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a>
Code: Select all
<a href="{forumrow.U_VIEWFORUM}" class="forumtitle forumid-{forumrow.FORUM_ID}">{forumrow.FORUM_NAME}</a>
<a href="{forumrow.U_VIEWFORUM}" class="forumtitle">{forumrow.FORUM_NAME}</a>
https://www.phpbb-theme.de/viewtopic.php?f=32&t=99
Not showing ext stylelayoutchanger->mystylechangesTalk19Zehn wrote: Sat Aug 17, 2019 3:50 pm Yes you are right. An extension to change the colors for forum-title and forumtitle I did not find, which would also be used on index.
Even for a few lines of code is a Stylelayoutchanger correct to use. Although in my view for a few codings "relatively" impractical, since the effort would be quite high.![]()
For my personal purposes my personal stylelayoutchanger was and is always sufficient. From this I have created a skeleton (* pattern) of a stylelayoutchanger. Attached is a child-design Prosilver named "ownprosilver" to show what might be possible and should also be installed. Again, this is just a skeleton with few CSS changes.
If interested - Download for the sample copy:https://www.phpbb-theme.de/viewtopic.php?f=32&t=98
The colors are currently only exemplarily included in the approach.
The paths are self-explanatory. * If someone like, he can write an extension that works in other and/or more parts.
I can not do more right now. Best regards
root/ext/stylelayoutchanger/mystylechanges/composer.json
Code: Select all
"name": "myself",
Code: Select all
"name": "myself"