-
1. Re: background images
hans-g. Sep 19, 2010 2:29 AM (in response to broomeGirl)Hi,
please look at forums's discussions headline:
How Important is Code? A plea for new posters to help us! (or better: help you)
Hans-G.
-
2. Re: background images
MurraySummers Sep 19, 2010 4:07 AM (in response to broomeGirl)There is no "no repeat" attribute value for the background image. There is a CSS style 'background-repeat:no-repeat;' - is that how you have done it? Otherwise, as Hans says, we'll have to see your non-functional code.
-
3. Re: background images
broomeGirl Sep 19, 2010 4:34 AM (in response to MurraySummers)Hi here is the css,
body {
margin:0 auto;
padding:0;
text-align:center;background-image:url(links/LinksBg.jpg) no-repeat fixed;
width:1024px;}Thanks
-
4. Re: background images
MurraySummers Sep 19, 2010 4:49 AM (in response to broomeGirl)CSS is wrong. If you are going to use shorthand for the background image rule, it needs to be like this -
body {
margin:0 auto;
padding:0;
text-align:center;background:url(links/LinksBg.jpg) no-repeat fixed;
width:1024px;} -
5. Re: background images
broomeGirl Sep 19, 2010 3:15 PM (in response to broomeGirl)Thanks so much! Been getting that wrong for ages.




