Hi, Just got some sample pages done homeideaz.com Want the background ( the green and black) changed on the index page How do I do this. Only html is not a problem but this has css etc. What to do how do i go about this. Please it seems easy but how to. Regards Rajiv
You can change it in your file: css/style.css Your file's first lines - change the red marked parameters. @charset "utf-8"; /* CSS Document */ body{ margin:0px; /*background-image:url(../images/background.jpg);*/ background-color:#003333; }
Do you want the background to be changed on the Index page only? If yes, then place an internal css sheet in your <head> tag somewhere below <link href="style.css" type="text/css" rel="StyleSheet" />. An internal style sheet will only be applied to the page it appears on and is enclosed in a <style type=“text/cssâ€></style> tag. Then put the CSS for the background in there like: <style type=“text/cssâ€> body {background propery: value} </style>
You have a table in your index file, and there is a background colour set as part of that. <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#003333"> Either change the bgcolor here, or better still, transfer your table settings to your css file and take the style markup out of your html file. Ive tested changing that colour and it is the page background, and not the background of the center part of the page where your content is. I hope thats the right one.
I want to change my background to black color with fonts in red to match with my header photo...i m assuming that going black with the background will be better for any header photo, i might come out with in the future....