Hi,
First, I would like to THANKS the author for the super theme!!! It looks clean, modern, and minimal!
Having a couple of questions:
1. how to center align footer? (on default theme it is centered, but on this theme it is on the right side) using these extensions for footer:
https://www.phpbb.com/customise/db/exte ... scftrscls/
https://www.phpbb.com/customise/db/exte ... _extended/
2. How to center a logo and remove header text?
THANKS!
How to change Footer aligment and center a logo? - Flat Style
-
- Registered User
- Posts: 14
- Joined: Sun Nov 14, 2021 1:36 pm
Re: How to change Footer aligment and center a logo?
At the bottom of
The logo is hidden on small screens (phones etc) so if you want it to show please also add the following:
flat.css
add the following, then clear your board cache.....Code: Select all
.copyright {
text-align: center;
}
.site-description {
display: none;
}
.headerbar {
text-align: center;
}
.logo {
float: none;
}
Code: Select all
@media (max-width: 700px) {
.logo {
display: inline-block;
}
}
My phpBB styles: phpbbstyles.iansvivarium.com
My "board": iansvivarium.com (yes, it's running phpBB!)
My "board": iansvivarium.com (yes, it's running phpBB!)
-
- Registered User
- Posts: 1472
- Joined: Fri Dec 12, 2008 9:08 pm
- Location: Manchester, UK
Re: How to change Footer aligment and center a logo?
thank you!!! Worked.
-
- Registered User
- Posts: 14
- Joined: Sun Nov 14, 2021 1:36 pm