borders and space use

35 views
Skip to first unread message

marq h

unread,
Jul 20, 2016, 3:50:59 AM7/20/16
to Project Jupyter
hello jupyter

I would like to alter the way my notebooks display, to make better use of the display space within my browser window.  As soon as my browser window gets beyond a certain size, I get gray borders on the left and right hand sides, with my notebook in the middle.

How may I ensure, for a particular notebook, that I am using 100% of the width of the browser window?

thank you
mark

Aaron Watters

unread,
Jul 20, 2016, 12:26:08 PM7/20/16
to Project Jupyter
This is not perfect, but it helps:

%%javascript

$("#notebook-container").css("margin-left", "10px")
$("#notebook-container").css("margin-right", "10px")

marq h

unread,
Jul 27, 2016, 3:20:37 PM7/27/16
to Project Jupyter
thank you Aaron

Having seen the javascript approach, I used

%%javascript

$("#notebook-container").css("width", "100%")

which is also helpful :)
Reply all
Reply to author
Forward
0 new messages