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.
SOLVED - How to change Author in topic the font size? - MyInvision
SOLVED - How to change Author in topic the font size?
Last edited by Thunder86 on Mon Jun 24, 2024 9:19 am
-
- Registered User
- Posts: 104
- Joined: Fri Apr 07, 2023 6:21 am
Re: How to change Author in topic the font size?
in links.css find
and below
Code: Select all
.postprofile a, .postprofile dt.author a {
font-weight: bold;
text-decoration: none;
color: #105289 !important;
}
color: #105289 !important;
add font-size: YourFontSize;
-
- Registered User
- Posts: 2003
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: How to change Author in topic the font size?
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
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
-
- Registered User
- Posts: 104
- Joined: Fri Apr 07, 2023 6:21 am
Re: How to change Author in topic the font size?
you are correct try adding using this instead
just paste it below the code i mentioned earlier
Code: Select all
.postprofile dt a {
font-size: YourFontSize;
}
-
- Registered User
- Posts: 2003
- Joined: Sun Oct 25, 2015 2:56 pm
- Name: Matt
Re: How to change Author in topic the font size?
Thats working! Thanks
-
- Registered User
- Posts: 104
- Joined: Fri Apr 07, 2023 6:21 am