Woud love some help! Customizing phpBB: Steve

Support for PhpBB3. Post here to get help with any phpBB3 related issue here
There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Locked
Reziem
BBCoder I
BBCoder I
Posts: 1
Joined: 10 Oct 2024, 21:58
BBCodes: 10

Woud love some help! Customizing phpBB: Steve

Post by Reziem »

Hey everyone,

I’m really like how some elements of this forum are set up, and I’d love to incorporate similar features into the phpBB forum we use at my job. We’ve been using phpBB as a makeshift support/ticket system, and it’s been working great for us.

I’m curious about and would appreciate any tips on how to implement the following:
  • Colored Usernames: I really like how usernames are color-coded here. I assume it’s tied to group permissions or roles, but I’m not entirely sure. This would be sweet to have on our support forum to distinguish different departments.
  • Color red for unread posts: I love this and makes it easy to see what needs attention.
  • Shadow and Bold Font in Titles: The forum titles here have a nice shadow and boldness that make them stand out and easier to read. I’d love to replicate that effect.
  • Rounded Corners in Theme: I was told this theme is based on se_square_left. It looks fantastic, but how do I achieve the same rounded corners for my forum’s theme?
Also, how can I donate to gain access to the donor section? 😎

Thank you for all the help!
dremuler
BBCoder I
BBCoder I
Posts: 4
Joined: 11 Oct 2024, 22:28
BBCodes: 1

Re: Woud love some help! Customizing phpBB: Colored Usernames, Font Styles, and Rounded Corners

Post by dremuler »

All can be performed by css

for example on phpbb 3.3

this code will add neon effect and color in an user name regardless the group or permission.

Code: Select all

.username-coloured ,a.u2{
color: #902dff !important;
text-shadow: 0px 0px 5px #ac98ff4f!important;
}
where: .u2 is the id of the user that can be founded on the url of his profile

you can try do the same for new topics, but im not sure, the only thing that i already tested is the code shared above.

rounded corners its related with the forum tables and border-radius css property.

on phpbb3
this code for example round some borders on prosilver theme

Code: Select all

.forabg, .forumbg {
    border-radius: 10px 10px 10px 10px;
}
of course wont do all the job you need open the developer mode on the browser and check which areas to apply and test it.
where each 10 value, control a single corner.

resereach a little bit about this css property.

ihope my comment help you out
User avatar
Stoker
Site Admin
Site Admin
Posts: 3527
Joined: 12 May 2008, 23:26
BBCodes: 239
Favourite BBCode: Anipro
Favourite MOD: PrettyPhoto
Location: Denmark
Contact:

Re: Woud love some help! Customizing phpBB: Colored Usernames, Font Styles, and Rounded Corners

Post by Stoker »

Reziem wrote: 13 Oct 2024, 06:26 Also, how can I donate to gain access to the donor section?
There is nothing of value there. Most of it is +10 years old
Board rules! No PM support
User avatar
Steve
BBCoder VI
BBCoder VI
Posts: 822
Joined: 05 Mar 2010, 01:10
BBCodes: 2000
Favourite BBCode: p**n tube
Favourite MOD: Non of Stokers

Re: Woud love some help! Customizing phpBB: Steve

Post by Steve »

Move it to the Archives forum then, stop the confusion.
NAPWR wrote: Nice, Stoker is Hot
download/file.php?id=2327&mode=view
Locked