Bigger fonts on the post and space between lines

For support and discussion related to templates and themes in phpBB 3.3.
Post Reply
VirtuaPT
Registered User
Posts: 7
Joined: Tue Oct 04, 2022 12:54 pm

Bigger fonts on the post and space between lines

Post by VirtuaPT »

As the title says. I have access to the css file so it's probably easy but i don't know where to change. I was experimenting with text but changed global text, .p but change the wrong fonts. Can anyone help? Thanks

FYI: My theme is the main/default one. The forum was made yesterday and didn't change anything significant
Last edited by Mick on Thu Oct 06, 2022 7:23 am, edited 1 time in total.
Reason: Solved.
User avatar
david63
Registered User
Posts: 20646
Joined: Thu Dec 19, 2002 8:08 am

Re: Bigger fonts on the post and space between lines

Post by david63 »

Use your browser inspector to find where to change it.
David
Remember: You only know what you know and - you don't know what you don't know!

I now no longer support any of my extensions but they will start to become available here
User avatar
Mannix_
Registered User
Posts: 1857
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: Bigger fonts on the post and space between lines

Post by Mannix_ »

content.css
change

Code: Select all

.postbody .content {
    font-size: 1.3em;
    overflow-x: auto;
}

Code: Select all

.postbody .content {
    font-size: 1.8em;
    overflow-x: auto;
    line-height: 1.8;
}
You are free to change the values to your liking
don't forget to purge browser cache after
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
VirtuaPT
Registered User
Posts: 7
Joined: Tue Oct 04, 2022 12:54 pm

Re: Bigger fonts on the post and space between lines

Post by VirtuaPT »

Thank You!!
Post Reply

Return to “[3.3.x] Styles Support & Discussion”