1. open the page in your browser
2. View Source
3. look for your footer contents (ie: "powered by" is some of the text in your footer)
4. note the DIV "id" related to that section is "siteinfoLegal"
5. add padding for that selector in the stylesheet, equal to the width of your left column (which appears to be 150px?):
Code:
#siteinfoLegal {
padding-left: 150px;
}
6. next you'll be back to ask the same question about your "home" link. so, do the same thing, searching for "home". Hint: since it's in the footer, it'll be just a few lines above the siteinfoLegal stuff you found earlier. You'll see that it's contained inside the "navSuppWrapper" div.
7. add padding for that selector to your stylesheet.
8. You'll notice that 150px seems to be too much for that ... so try 80:
Code:
#navSuppWrapper {
padding-left: 80px;
}
For most other customizations to visual appearance, use the same concept.
BTW - just posted the same tips in the wiki