Jupyter-themes: error in printing

Created on 8 Apr 2018  路  7Comments  路  Source: dunovank/jupyter-themes

Not sure if this is already an issue as I didn't scroll through them all, but an error I noticed consistently for every theme is that the beginning of whatever you print gets cut off as seen below.
image

Most helpful comment

replace the current div.output_area with the following in the custom css file
div.output_area {
display: -webkit-box;
padding: 13px;
}

All 7 comments

I only see this issue for some fonts (e.g. anka, anonymous), while others (e.g. aurulent, hack) are fine.

I am having the exact same issue.
Your suggested workaround (changing the font) doesn't seem to work on my machine.

I'm also have this problem.Is there any solution to solve?

replace the current div.output_area with the following in the custom css file
div.output_area {
display: -webkit-box;
padding: 13px;
}

thanks, @souravehossain that worked!!!

I had a hard time following what @souravehossain posted, but I eventually found the .css file under "~/.jupyter/custom/custom.css" and it worked

the ".jupyter" directory may be hidden, and you will have to view hidden directories to move into it

Thanks @souravehossain !

@mmcguffi thank you so much! I also had trouble finding the right css file and your comment helped. Finally fixed the issue with @souravehossain's suggestion.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

Brett99 picture Brett99  路  7Comments

ozkansafak picture ozkansafak  路  3Comments

diedummydie picture diedummydie  路  8Comments

suberlak picture suberlak  路  4Comments

Peydon picture Peydon  路  3Comments