You can only change a website if it belongs to you. for instance i have a website of my own. i created it using webeden. when i log in, i can edit anything i want, including the color background. you try!
This is the HTML tag: <body bgcolor="green"> or you can use codes <body bgcolor="#00FF00">
You could easily put multicolor background. You can select a graphic and put background-color="url('url-here')".
Here's the HTML tag: <body background="yourimage.gif"> or <body background="yourimage.jpg">
extren void setbkcolor (int color);
A background can be added on CSS. ex: #body {background: url(../images/bodybg.jpg) repeat-x;}The HTML code for background color is Note: The code must be put inside the body tag, that is between and of your HTML script and the values of color can be change accordingly. For example, if you want to put gray background color you simply change the value to "#727272" or "#000000" for black if you want.
just put this in your about me section at the bottom. you can change the 000000 to any color code you want
On the Format menu, click Background.In the Background task pane, under Apply a background, click a color from the publication's color scheme that you want to apply to the background.Point to the background that you want, click the arrow next to it, and then do one of the followingOn the Format menu, click Background.In the Background task pane, under Apply a background, click a color from the publication's color scheme that you want to apply to the background.Point to the background that you want, click the arrow next to it, and then do one of the following
It's not HTML. Background color is a CSS style. You need to put in either a stylesheet, or attach the style attribute to the tag whose background color you're trying to set. For instance: <p style="background-color:blue;">This paragraph would have a blue background.</p> Colors in CSS can be set using names (there's 170 or so of them) Via a hexadecimal RGB value: <p style="background-color:#b3b3b3;">This a meduim gray. The pairs of hex digits correspond to RGB.</p> Using RGB directly: <p style="background-color: rgb(179,179,179);">This is the same color as #b3b3b3</p> And using RGBA (which gives you an alpha channel, letting you set transparency) <p style="background-color: rgba( 179, 179, 179, .5 );">This paragraphs background color would be 50% transparent.</p>
If you're using HTML, the script of <font color="XXX">Text goes here</font>
To change the color of the background in Photoshop, you can use the "Paint Bucket Tool" to fill the background layer with a new color. Simply select the tool, choose a color from the color picker, and click on the background layer to change its color.
To change the color of the background in Photoshop, select the "Paint Bucket" tool, choose a color from the color picker, and click on the background layer to fill it with the selected color.
Use the CSS declaration "background-color" For instance... <style type="text/css"> body { background-color: red; } </style> That code will change the background color to red. Background color will take the same values for a color as all other CSS color. A named color keyword, a hex RGB value, a decimal RGB value, and a decimal RGBA value.