Is it bug or feature?
I want to set 2 styles for users to choose - bright Elegance and dark Black DarkBlue (the same author)
Black DarkBlue shows forum descriptions (and forum name at the top) as expected:
but Elegance doesn't:
I have phpBB v3.3.14 and latest Elegance and Black styles.
Elegance doesn't show forum descriptions - Elegance
-
- Registered User
- Posts: 6
- Joined: Wed Jan 01, 2025 6:02 am
Re: Elegance doesn't show forum descriptions
Nevermind, I changed look by modifying _style_config.html
and resetting forum cache.
Site name and site description were switched ON by removing this thing from stylesheet.css:
But I think I need to add some spacing though:
Code: Select all
> diff _style_config.old _style_config.html
29,30c29,30
< <!-- DEFINE $STANDARD_FORUMS_LAYOUT = 0 -->
< <!-- DEFINE $HIDE_FORUM_DESCRIPTION = 1 -->
---
> <!-- DEFINE $STANDARD_FORUMS_LAYOUT = 1 -->
> <!-- DEFINE $HIDE_FORUM_DESCRIPTION = 0 -->
Site name and site description were switched ON by removing this thing from stylesheet.css:
Code: Select all
.site-description h1, .site-description p {
display: none;
}
-
- Registered User
- Posts: 6
- Joined: Wed Jan 01, 2025 6:02 am