I have an element which I am adding a class to.

the style is:

.bg{ background: url(/images/background.png) no-repeat top center #000; }

When I add the class with javascript the background image show up, and the color show up, but the positioning does not.

This works fine in everything except IE

link|improve this question
feedback

2 Answers

You have defined a vertical value (top), and one that doesn't exist (middle).

The vertical values are top, center and bottom, while the horisontal are left, center and right.

When using both, the first is the horisontal and the second is the vertical, so you got them backwards.

Use:

.bg{ background: #000 url(/images/background.png) no-repeat center top; }
link|improve this answer
feedback

You're not using the CSS background: shorthand properly - you're missing the background-repeat part. It should be something like this:

.bg {
    background: #000000 url(/images/background.png) no-repeat scroll center top;
}          /*   ^       ^                           ^           ^     ^
                color   image                       repeat attachment position */

http://www.w3schools.com/css/css_background.asp

link|improve this answer
Actually, I have no-repeat in there. My mistake I omitted that. The issue is not the CSS. It looks fine, if the class is there when the page loads. However if the class is added with javascript. Background position is not respected. (IN IE) – jayemvee Nov 10 '10 at 1:09
I always do background:#bgcolor url(filename) no-repeat 0 0; and that seems to work pretty well. – JAL Nov 10 '10 at 1:12
-1. There is no "middle" value, and you got the vertical and horisontal values swapped. You might want to check out the page that you linked to... ;) – Guffa Nov 10 '10 at 1:26
@Guffa: yeah, I didn't try it out - just copied the CSS from the OP... poorly. Must stop posting on SO while cooking. – Matt Ball Nov 10 '10 at 1:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.