I forgot to post this last month. I final got some business cards done and they cost me a small fortune. They were made by http://www.goodprint.co.uk/ and they did a great job.




First things first I was suppose to finish that fashion web site I was working on but things came up. First a DJ friend of mine needed his web site re-designing so I redid the home page for him. For the time being its just one page with information about him and a link for his myspace and facebook page. At so point in the future there will be a page for other artists and media to be displayed on the site.
Thirdly I have been spending a bit of time on adding a Flickr feed and a Twitter feed on my web site. Not to mention a bit of a redesign to the site mainly to the footer and the header, the footer now has a fence like pattern and the header has my name in a very colourful and bold way. I think in the next few weeks I’ll try and re do the header and add some kind of logo.

On Saturday, 4 April 2009 in my post "Build a Sleek Portfolio Site from Scratch" I made a mistake with the coding.
The correct coding should be for page1 in the web design site should be...
body {
margin:0px; padding:0px;
background-color:#11090a;
font-family:Arial, Helvetica, sans-serif;
}
#wrap_container {
background:url(images/background_bottom.jpg) repeat-y #000;
}
#outside_container {
background:url(images/background_slice.jpg) repeat-x;
}
#container {
background:url(images/background_main.jpg) no-repeat;
min-height:750px;
width:861px;
position:relative;
}
The original code was....
body {
margin:0px; padding:0px;
background-color:#11090a;
font-family:Arial, Helvetica, sans-serif;
}
#outside_container {
background:url(images/background_slice.jpg) repeat-x #000000;
background:url(images/background_bottom.jpg) repeat-y #000;
}
#container {
background:url(images/background_main.jpg) no-repeat;
min-height:750px;
width:861px;
position:relative;
}
The problem was that I had a Div called "outside_container" this was trying to repeat an image horizontally. And then an image repeated vertically both with a black background colour. This confused the browser and didn't display the website in the way I wanted it to. The solution was to have each background:url(images/#######.jpg) on its own Div tag. Then I needed the "wrap_container" to set the background colour to black which is #000
Shazam! the site works "page1" displays the site how it should be and "page2 with bug" shows one of the problems I had