« Web, HTML, Tech Forum

change font sizes?

Posted by g0lly03

posted

Forum: Web, HTML, Tech

says it on the tin! anyone know what codes i could use to change the size of the fonts at the very top and bottom of my profile? (ex. the home, browse, search, etc. and the disclaimer and links at the bottom). i love the smaller text side of the rest of the theme and i wish it was all uniform :"(


Report Topic

1 Reply

Reply by canto

posted

Change 'small' to whatever size you'd like.

ul > li > a {
font-size: small !important;
}

footer > p {
font-size: small !important;
}

Also, if you want to get rid of the "new" or the bell icon that appears when you have notifications (it typically causes the header's links to overflow), you can use this:

li > a > img {
display: none !important;
}


Permalink Report Reply