diff --git a/code_editor/README.md b/code_editor/README.md index 6bad46cfc9e..ae9b087e3fc 100644 --- a/code_editor/README.md +++ b/code_editor/README.md @@ -4,7 +4,7 @@ You're about to write your first line of code, so it's time to download a code e There are a lot of different editors and it largely boils down to personal preference. Most Python programmers use complex but extremely powerful IDEs (Integrated Development Environments), such as PyCharm. As a beginner, however - that's probably less suitable; our recommendations are equally powerful, but a lot more simple. -Our suggestions are below, but feel free to ask your coach what their preference is - it'll be easier to get help from them. +Our suggestions are below, but feel free to ask your coach what their preferences are - it'll be easier to get help from them. ## Gedit @@ -14,7 +14,7 @@ Gedit is an open-source, free editor, available for all operating systems. ## Sublime Text 2 -Sublime Text is a very popular editor with a free evaluation period. It's easy to install and use, and available for all operating systems. +Sublime Text is a very popular editor with a free evaluation period. It's easy to install and use, and it's available for all operating systems. [Download it here](http://www.sublimetext.com/2) diff --git a/css/README.md b/css/README.md index ba16aa17f9d..5a242ff7465 100644 --- a/css/README.md +++ b/css/README.md @@ -39,8 +39,9 @@ CSS is a static file, so in order to customize CSS, we need to first configure s First, we need to create a directory to store our static files in. Go ahead and create a directory called `static` inside your `djangogirls` directory. - static - manage.py + djangogirls + ├─── static + └─── manage.py Open up the `mysite/settings.py` file, scroll to the bottom of it and add the following lines: @@ -55,8 +56,8 @@ This way Django will know where to find your static files. Let's create a CSS file now, to add your own style to your web-page. Create a new directory called `css` inside your `static` directory. Then create a new file called `blog.css` inside this `css` directory. Ready? static - └───css - blog.css + └─── css + blog.css Time to write some CSS! Open up the `static/css/blog.css` file in your code editor. @@ -72,7 +73,7 @@ In your `static/css/blog.css` file you should add following code: `h1 a` is a CSS Selector. Any `a` element inside of an `h1` element (i.e. when we have in code something like: `