MyInvision

SOLVED - How to change Author in topic the font size? - MyInvision

SOLVED - How to change Author in topic the font size?

by Thunder86 » Fri Jun 21, 2024 5:04 pm

How can I change the font size of the author?

I'm not sure, if I have to edit the content.css or any php file.
Attachments
Screenshot 2024-06-21 at 19.00.07.png
Last edited by Thunder86 on Mon Jun 24, 2024 9:19 am
User avatar
Thunder86
Registered User
Posts: 104
Joined: Fri Apr 07, 2023 6:21 am

Re: How to change Author in topic the font size?

by Mannix_ » Fri Jun 21, 2024 6:38 pm

in links.css find

Code: Select all

.postprofile a, .postprofile dt.author a {
	font-weight: bold;
	text-decoration: none;
	color: #105289 !important;
}
and below color: #105289 !important; add font-size: YourFontSize;
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!
User avatar
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: How to change Author in topic the font size?

by Thunder86 » Fri Jun 21, 2024 7:13 pm

Its working in general but the "Posts" Count below the Avatar changed the font size as well.

The counter isn't an issue anymore because I removed the counter as well.

Unfortunately the contact button is bugged as soon as is change the font size to 15px as example. The Icon for the Email and the PM show "SEND AND EMAIL" in Letters which covers the button
User avatar
Thunder86
Registered User
Posts: 104
Joined: Fri Apr 07, 2023 6:21 am

Re: How to change Author in topic the font size?

by Mannix_ » Sat Jun 22, 2024 5:53 am

you are correct try adding using this instead

Code: Select all

.postprofile dt a {
    font-size: YourFontSize;
}
just paste it below the code i mentioned earlier
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!
User avatar
Mannix_
Registered User
Posts: 2003
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt

Re: How to change Author in topic the font size?

by Thunder86 » Sun Jun 23, 2024 12:21 pm

Thats working! Thanks
User avatar
Thunder86
Registered User
Posts: 104
Joined: Fri Apr 07, 2023 6:21 am