No big deal, but it seems like a few versions ago the h2s, when I’m working in the advanced editor, started showing as smaller than h3s, and indented a bit. For example, in this screen grab, Philanthropy is an h2 and Laura E Hubbell is an h3: https://www.evernote.com/shard/s320/sh/757d4b91-db7d-4a20-8ad4-a74362f2e84b/1ad82fe2831680d194ce60cc569fff66
I keep thinking you guys will fix it, but several versions have passed since I noticed it, so I figured I’d mention it. Also, I’ll be trying to pitch the theme to another developer for an upcoming project and it just makes the theme look a little sloppy.
Thanks, and let me know if you have any questions.
Hey sky19er,
Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.
Thanks,
Rikard
You got it…
Hey!
Try adding this at the very end of your theme / child theme functions.php file:
function custom_admin_css() {
?>
<style>
#poststuff h2,
#poststuff h3{
font-weight: bold;
padding: 0;
}
#poststuff h2 {
font-size: 18px;
}
#poststuff h3 {
font-size: 14px;
}
</style>
<?php
}
add_action( 'admin_head', 'custom_admin_css' );
?>
Cheers!
Josue
Thanks, but it’s not that important to me that I’d implement a child theme just for that. I’d be happy just knowing you guys plan on fixing it in some future update…?
I’ll let Kriesi know.
Best regards,
Josue