Once you have your custom.css file open in your favorite text editor you can start customizing it to your liking. If you’re having problems finding your custom.css file read this tutorial. If you’re having problems extracting your custom.css file so you can edit it, check out this tutorial.
The very first time you open your custom.css file it should look like this…
You can do one of two things. Read this and delete it or read it and keep it there. Deleting it isn’t going to effect the file at all. They’re just simply comments. If you want to leave it there just type all your new code before the opening comment bracket /* or after the closing bracket */
Once you get your file open in your text editor, the process of making changes is quite simple. Any change you’re going to make you are going to type in the word “.custom” (dot custom) before any selector you want to make changes to.
For example, say in your custom.css file you want to change the H1 to whatever styling you like. You don’t necessarily have to find the H1 in the file. Instead, type this….
.custom H1 {whatever style you want here}
I prefer to always type in the new code instead of finding the existing code and adding .custom to it. This way you can preserve the original code itself.
You can do the same with classes and ID’s
If you have a class selector you want to change like this…
.sidebar a { }
You can customize it like this…
.custom .sidebar a { }
If you have an ID you want to change like this…
#custom_box { }
You can customize it like this…
.custom #custom_box { }












If you would like to leave a comment and you have examples of code you want to show, you must "escape the code". This allows the entire code to show correctly by inserting certain variable around certain tags to make them show. If you don't "escape the code" your code will show up broken, mangled, and it won't be able to be seen correctly. "Escaping the code" is very simple...
Go ahead, leave a comment...