Tagged: x
-
AuthorPosts
-
March 30, 2016 at 6:42 am #858574
Hi Guys
I have a small issue in that the custom CSS pane is obscured slightly by the line numbers. See attached…
Matt
March 30, 2016 at 7:25 am #858626Hi 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.
March 30, 2016 at 7:34 am #858636This reply has been marked as private.March 30, 2016 at 9:08 am #858783Hi 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!
March 30, 2016 at 9:21 am #858800Edited to remove the stupidity on my part.
March 30, 2016 at 12:48 pm #859124Unfortunately this hasn’t had any effect…
March 30, 2016 at 1:03 pm #859157Hi 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!
March 30, 2016 at 1:08 pm #859171Still no effect I’m afraid…
March 30, 2016 at 9:00 pm #859907Hey Matt,
It looks to me like the issue is solved (see attachment).
Thanks.
-
AuthorPosts