Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #656688

    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.

    • This topic was modified 8 years, 4 months ago by sky19er.
    #656895

    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

    #657176

    You got it…

    #658179

    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

    #658202

    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…?

    #658622

    I’ll let Kriesi know.

    Best regards,
    Josue

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘h2 smaller than other headings in editor’ is closed to new replies.