Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #858574

    Matt
    Moderator

    Hi Guys

    I have a small issue in that the custom CSS pane is obscured slightly by the line numbers. See attached…

    Matt

    #858626

    Christopher
    Moderator

    Hi there,

    Thanks for writing in!

    I can’t replicate this issue on my end, would you confirm that you’re fully updated ?
    You can find the latest version numbers here: (http://theme.co/changelog/) Then you can compare them to what’s installed on your site.

    If you find anything to be out of date, you can review our update guide.

    Would you provide us with URL and login credentials in private replay?

    Thanks.

    #858636

    Matt
    Moderator
    This reply has been marked as private.
    #858783

    Thai
    Moderator

    Hi There,

    There is an CSS conflicted by Easy Social Share Buttons plugin.

    To fix this issue, try adding the following code under functions.php file locates in child theme:

    add_action( 'admin_enqueue_scripts', 'x_print_custom_css' );
    function x_print_custom_css(){
    	?>
    	<style type="text/css">.CodeMirror-sizer{margin-left: 32px !important;}</style>
    	<?php
    }

    Let us know how it goes!

    #858800

    Matt
    Moderator

    Edited to remove the stupidity on my part.

    #859124

    Matt
    Moderator

    Unfortunately this hasn’t had any effect…

    #859157

    Rupok
    Member

    Hi there,

    Tanks for updating. Could you update the code to following? :

    add_action( 'admin_enqueue_scripts', 'x_print_custom_css' );
    function x_print_custom_css(){
    	?>
    	<style type="text/css">.CodeMirror-sizer{margin-left: 32px !important;} .CodeMirror-gutter {width: auto !important;}</style>
    	<?php
    }

    Hope this helps.

    Cheers!

    #859171

    Matt
    Moderator

    Still no effect I’m afraid…

    #859907

    Christian
    Moderator

    Hey Matt,

    It looks to me like the issue is solved (see attachment).

    Thanks.