Reddspark
Reddspark

Reputation: 7567

Anaconda Jupyter Custom CSS

Anyone know if and how this is possible within the Jupyter that comes with Anaconda? (i.e. Customizing the Jupyter theme via CSS in Anacconda).

http://sherifsoliman.com/2016/01/11/theming-ipython-jupyter-notebook/

I tried putting a css file here: Anaconda3\Lib\site-packages\jupyter_core\tests\dotipython\custom\custom.css

But can't see any changes and not sure if this is even the right place for it.

Upvotes: 2

Views: 3211

Answers (2)

Aditya Akbar
Aditya Akbar

Reputation: 1

you can put it on C:/Users/User/.jupyter/custom/custom.css

works for me

Upvotes: 0

sub_o
sub_o

Reputation: 2802

Given that my conda is installed on

/Users/myusername/anaconda

what I did is to copy the custom.css into

/Users/myusername/anaconda/lib/python3.6/site-packages/notebook/

(note that I installed Conda for Python 3.6) After that just restart your jupyter notebook, it should be updated to the new theme

Edit: my custom.css is created using Jupyter-Themer.

Upvotes: 2

Related Questions