Wednesday, May 28, 2008

How To Get Large Matts Out Of Persian Cat

Insert a background on the blog (Blogger)

Here are listed a couple of good sites to download high definition wallpapers.

To change the background of the blogger there are a few things to do: go to Edit HTML

(from the homepage of the blog click on the Customize-> Layout-> Edit HTML) and look for the part of code that begins with "body { "is at a dozen rows from the beginning.

you should be looking at the code more or less like this:


body {background: # 000;
margin: 0;
padding: 40px 20px;
font: x-small "Trebuchet MS", Trebuchet, Verdana , Sans-Serif;
text-align: center;
color: # ccc;
font-size / * */:/**/ small;
font-size: / ** / small;}


now eliminated "color: # ccc", and insert ( where you like, but inside the braces of "body") the following strings:

background-image: url (LINK BACKGROUND);
background-attachment: fixed;
background-position: bottom center;
background-repeat: no-repeat;


This is the code I used for my background, now I'll explain how to customize it as needed:

background-attachment: fixed; Blocks the background image This means that when you scroll through the page you see the background move. To move the background at the same time when "shaken" the page, you just do not put that string.

background-position: bottom center; Place the background image down the center axis y axis x.

Range:

top left top center top right


center left center center center right


bottom left bottom center bottom right


you do not insert one or both of these parameters, they will be the default the value "center".
can also be more specific to the location by entering a number. For example: background-position: 5% 80%
values \u200b\u200b0% 0% indicate the top left corner, while the values \u200b\u200b100% 100% indicate the lower right corner. If one or both parameters are omitted, the default value is 50%.

background-repeat: no-repeat; indicates that the background image will not be repeated, to put the image repeated enough not to include this string.
background-repeat: repeat-x; only repeats the image horizontally.
background-repeat: repeat-y; repeats the image only vertically

0 comments:

Post a Comment