penders

msg:4419080 | 8:37 am on Feb 18, 2012 (gmt 0) |
If you are wanting a horizontally repeating background shouldn't you be setting background-repeat:repeat-y; somewhere? (Maybe you are if it's working in Chrome and FF?)
|
Marshall

msg:4419102 | 12:44 pm on Feb 18, 2012 (gmt 0) |
| If you are wanting a horizontally repeating background shouldn't you be setting background-repeat:repeat-y; somewhere? |
| Not necessary. Repeating along 'x' and 'y' is default behavior. repeat-x and repeat-y is only needed if you do not want it to repeat in the other direction. Marshall
|
penders

msg:4419117 | 3:20 pm on Feb 18, 2012 (gmt 0) |
Ha, yes of course - well spotted! :) (And I meant to write "repeat-x", not "repeat-y"!). I obviously wasn't awake this morning!
|
Marshall

msg:4419143 | 5:39 pm on Feb 18, 2012 (gmt 0) |
| Ha, yes of course - well spotted! |
| I was impressed that I saw it :) Marshall
|
acepro95

msg:4419145 | 5:45 pm on Feb 18, 2012 (gmt 0) |
here is another area of the page where the footer is refrenced. I hope this helps body { background-color: #F8F8F8; } div.c28 {background-image:url('images/footer_bg.jpg');background-repeat: yes-repeat} p.c27 {text-align: center} span.c26 {font-family: Arial; font-size: 10pt} span.c25 {font-family: Arial} span.c24 {font-family:Arial,sans-serif; font-size:10pt; color:white;} span.c23 {color: white; font-family: Arial; font-size: 10pt} p.c22 {margin-left:25pt;} span.c21 {color: white} td.c20 {background-color: #FAF8F9; background-repeat: no-repeat}
|
penders

msg:4419179 | 9:39 pm on Feb 18, 2012 (gmt 0) |
| div.c28 {background-image:url('images/footer_bg.jpg');background-repeat: yes-repeat} |
| "yes-repeat" is an invalid value. The correct value is simply "repeat". But as Marshall correctly points out, this is actually the default behaviour, so you perhaps don't need to specify the background-repeat rule at all, unless you need to override another rule? If the CSS is invalid then browsers can potentially behave differently, which appears to be what is happening here.
|
penders

msg:4419194 | 10:29 pm on Feb 18, 2012 (gmt 0) |
| "yes-repeat" is an invalid value. |
| Actually, I'm not convinced that this is the source of your problem!? I just did a quick test and both Chrome and IE (versions 6-9) correctly ignore this value. | [div id="page-bot" class="c28" style="background-image:url('images/footer_bg.jpg');"> |
| I've just noticed, but maybe this is a typo(?), your opening DIV tag is malformed.
|
penders

msg:4419213 | 12:02 am on Feb 19, 2012 (gmt 0) |
| I just did a quick test and both Chrome and IE (versions 6-9) correctly ignore this value. |
| Sorry, correction (again!)... "IE8+ correctly ignores this value. However, IE6-7 appear to treat 'yes-repeat' like 'repeat' and results in a repeating background!?" - although I still don't think this helps you much. (I really should get more sleep!)
|
|