MyBB Community Forums

Full Version: Larger font for some reason :/
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm having difficulties with my theme.
Before it looked like this:

http://prntscr.com/18vivq
^smaller text size.

Now for some reason it's:
http://prntscr.com/18viy7
^Bigger text size.

All I changed was the "div.error" css options in the global css and that happened.

Can anyone help?
Forum URL?
Sent a PM with the link.
global.css doesn't validate. There's an error in:

.smalltext {
	font-size: 11px;
}

Quote:221 .smalltext Lexical error at line 221, column 1. Encountered: "\u000b" (11), after : "" font-size: 11px;
222 .smalltext Parse Error }

I'm not sure what that is. The code looks fine. Maybe some sort of a weird hidden character that's messing things up? I don't know. The .smalltext CSS rule appears empty in Chrome's dev tools (if you add font-size: 11px it works fine).

Try removing the whole .smalltext class block and add this to the bottom instead:

.smalltext { font-size: 11px; }
Ahh, I've just changed it to what you've said.

Works now, thanks so much :]