[phpBB Debug] PHP Warning: in file [ROOT]/ext/hjw/easy_language_change/event/main_listener.php on line 107: strstr(): Empty needle
phpBB skins by Tastenplayer • text background
Seite 1 von 1

text background

Verfasst: 20. Jan 2021, 00:28
von Forum Member
Hi there,

I installed your prosilvercolor-blinds 2nd today on my forum, really liking the simple look. One thing that I would love to change is the white background on user names - is it possible to change that somewhere?

tirnahifi.org/forum

Re: text background

Verfasst: 20. Jan 2021, 13:17
von Forum Member
I'm glad you like my style :)
If you do not want a background behind the usernames:

Search this in stylesheet.css 119

Code: Alles auswählen

.username-coloured {
    background-color: #F2F2F2;
    font-weight: bold;
    display: inline !important;
    font-style: italic;
    padding: 0 !important;
}
Replace with

Code: Alles auswählen

.username-coloured {
    background: transparent;
    font-weight: bold;
    display: inline !important;
    font-style: italic;
    padding: 0 !important;
}
in stylesheet.css 126
search this

Code: Alles auswählen

.stat-block a.username-coloured {
    background-color: #FFFFFF;
}
replace with

Code: Alles auswählen

.stat-block a.username-coloured {
    background: transparent;
}
Search in stylesheet.css 131

Code: Alles auswählen

tr.bg1 a.username-coloured, tr.bg2 a.username-coloured {
    background-color: #FFFFFF;
}
Replace with:

Code: Alles auswählen

tr.bg1 a.username-coloured, tr.bg2 a.username-coloured {
    background: transparent;
}
Search in stylesheet.css 143

Code: Alles auswählen

.dropdown-extended ul li.bg2 .username-coloured, .dropdown-extended ul li.bg4 .username-coloured {
	background-color: #F9F9F9;
}
Replace with:

Code: Alles auswählen

.dropdown-extended ul li.bg2 .username-coloured, .dropdown-extended ul li.bg4 .username-coloured {
	background: transparent;
}

Re: text background

Verfasst: 20. Jan 2021, 20:03
von Forum Member
Thanks for that - I'll implement now shortly!