I like Black style very much (and its flavors), but it's having one little problem - in the list of active users it shows extra space before Bot names:
This is how it looks in prosilver for example:
Extra space before Bot name - Black
Extra space before Bot name
Last edited by Shaos on Sun Jan 05, 2025 8:37 pm
-
- Registered User
- Posts: 6
- Joined: Wed Jan 01, 2025 6:02 am
Re: Extra space before Bot name
Another style from Arty has the same problem - see Elegance:
https://www.phpbb.com/customise/db/styl ... elegance2/
https://www.phpbb.com/customise/db/styl ... elegance2/
-
- Registered User
- Posts: 6
- Joined: Wed Jan 01, 2025 6:02 am
Re: Extra space before Bot name
Hello,
Open
Remove (line ~21):
Compile the code (using the SCSS Compiler extension, for example).
This change will be made in the next release.
Open
Ouvrez theme/common/_links.scss
Remove (line ~21):
Code: Select all
span.username-coloured {
margin-left: 10px;
}
This change will be made in the next release.
-
- Jr. Style Validator
- Posts: 990
- Joined: Sat Jan 07, 2012 4:16 pm
Re: Extra space before Bot name
It works, thanks!
(I simply edited stylesheet.css)
(I simply edited stylesheet.css)
-
- Registered User
- Posts: 6
- Joined: Wed Jan 01, 2025 6:02 am
Re: Extra space before Bot name
Another suggestion - to make attachbox header ATTACHMENTS instead of Attachments (to match original prosilver style) text-transform: uppercase should be added back:
Code: Select all
.attachbox dt {
font-family: "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
font-size: 12px;
line-height: 1.6;
font-weight: 500;
text-transform: uppercase;
}
-
- Registered User
- Posts: 6
- Joined: Wed Jan 01, 2025 6:02 am