Miko
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Change sub-menu font sizeYou don’t have to edit in the superfish.css – you could just paste into your child theme (or custom css) the following:
#top-navigation .sub-menu li { font-size: 1.3em !important; }
just change 1.3 to whatever you want.
Doing it in the child theme is better because your changes won’t get overwritten
Forum: Themes and Templates
In reply to: [MesoColumn] Tiny CSS issues ith buddypressAnother one I noticed just now:
Go to Forums, click on a topic. The “Add a reply” line is aligned strangely on the far right instead of above the reply box.
Forum: Themes and Templates
In reply to: [MesoColumn] Mesocloumn, blurry fonts in menu barBy the way, the superfish.css overrules any changes I make in style.css (even if I use !important), so I’ve had to edit the actual superfish.css rather than use my child theme’s style.css… @campbulletin, save yourself the headache and choose a font with 600/700 weights.
Forum: Themes and Templates
In reply to: [MesoColumn] Mesocloumn, blurry fonts in menu barCampBulletin: You will experience this if you are using one of the Google Fonts that does not have a bold weight associated. For example, the font Actor has only weight 400 (normal), but the Mesocolumn options-css.php file and the superfish menu css assigns the weight of 600 (semi-bold) to headers and font-style: bold to menus. Furthermore, most browsers by default assign all headers a weight of 700 (bold), so the blurriness is due to your browser ‘fake bolding’ typefaces which do not have a proper bold style defined. That’s probably why the Kindle looks OK (as it doesn’t have the built-in bolding, I’d guess).
If you definitely want crisp fonts, and definitely want to use a Google Font, you have 2 choices:
OPTION A) Choose a Google Font that has a 600 & 700 weight option. You can see which ones do by heading over to https://www.google.com/fonts and look for ones which say they have 14 styles (you can click to see all the variants).
OPTION B) If you are confident with code, you could alter your css to override the theme’s enforced semi-bold / bold settings.
@richie KS: I would strongly recommend any future releases of the theme do not make use of !important bolding hard-baked into your heading/menu styles to allow maximum flexibility. I’ve been trying to un-force this and it’s been a lot of investigative trial & error.
There’s a great post on this very topic here: https://css-tricks.com/watch-your-font-weight/
Forum: Themes and Templates
In reply to: [MesoColumn] Category menu current item highlighter intermittentThanks, Richie. Must have been a browser cache issue.
Forum: Fixing WordPress
In reply to: How to let only registered users use search?Oooh, I want to do the same thing and I am on buddypress too – can you post your code here?