User:Copper20

From Glitches

Another nice addition to your deigsn series, you write it up so well that everyone can understand it.The only extra things there would be is different ways with backgrounds.If you wanted your background to only show once then you use background-repeat:no-repeat;. I have this on my blog where I have text in the top corner which is a background image and I don't want it to show more further down the page.On my blog also my background position is top left, so I use background-position: left top;. You can position your background using left, center, right for along the width of the page. And top, center, bottom to position it along the height of the page.Maybe you have a background you only want showing at the top of your page, so you set it to background-repeat:no-repear;. But now the bottom of your page is just white and you want it blue! add into the code background-color:blue; You can use most standard colours by name (blue, red, green, black etc) but sometimes you may need a particlar colour. so instead of blue you need to put #000099 which is a deep blue. You can find out the # of a colour in the blogger deigsn template, or google "colour hex" to find online sites to help you.For more background help google "css background" and the first link should be w3schools.com and they can help you in remembering what each bit of code will do!

Personal tools