Categories
Contracting

Starting up a new website

1) Topic: What is the website about? Define it in a few words, including audience.

2) Keywords: What will be the keywords that would describe your site best, make a cloud of them.

3) Name and domain: get the best possible ever, based on keywords.

4) Hosting: setup hosting account.

5) Local development bed. Setup the testing site or local copy where you will do development.

6) Template: either wordpress or basic “coming soon” page with chosen technologies. Do this along with 5.

7) Tracking: install Google Analytics from the start

Note: if you will be using WordPress from the get go, take a look at this post: http://onsubject.com/knowledge/?p=657

Categories
Wordpress

WordPress: choosing and modifying a theme

1) Download thematic (as the parent theme)
2) Create a child theme folder for the new site, and activate it using wordpress admin screen
3) Choose the basic layout you need, by modifying this line:
@import url(‘../thematic/library/layouts/2c-r-fixed.css’);
You can also create your own layout at this point if you feel like it. Same with typography or other things.
4) You can also modify the default main css to your site by creating a local copy on your child theme:
@import url(‘newstyles.css’);
5) Modify the templates and functions from the parent directory directly at the child’s folder, that way
you can always update the parent theme without affecting the child

Correction: 20/11 newest wordpress theme is set to be HTML5 already. Use that instead.