im_bar = document.createElement("img");
im_bar.id = UPDATE_STATUS_RESPONSE[0]+"_SPLIT";
im_bar.style.display = "block";
im_bar.style.margin = "0px auto 0px auto";
im_bar.src = "graphics/news_feed_line.png";
document.getElementById("SCRIPT_NEWS_FEEDS").insertBefore(im_bar,document.getElementById("SCRIPT_NEWS_FEEDS").firstChild);

Produces

<img src="graphics/news_feed_line.png" style="display: block; margin: 11px auto 0px;" id="2_SPLIT">

Question: Why doesn't the outputted margin match what I define in javascript?

link|improve this question

9  
Cool story, bro. – Ender Mar 30 '11 at 22:53
What's your question? – quixoto Mar 30 '11 at 22:53
Any screenshots? – Rasika Mar 30 '11 at 22:55
1  
hmm..is that what you are seeing in the live html (from like firebug)? Are you sure it's not inheriting that 11px from something else, after you insert it? – Crayon Violent Mar 30 '11 at 22:57
1  
@Shane - upgrade Firebug to 1.7.0, it should work fine with Firefox 4 – Russ Cam Mar 30 '11 at 23:01
show 9 more comments
feedback

closed as too localized by quixoto, therefromhere, Ken White, Ender, Robert Harvey Mar 31 '11 at 4:20

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

Instead of assigning all these styles in javascript, you should use a css class.

link|improve this answer
i didnt think of that lol, but what is causing the problem? – Shane Larson Mar 30 '11 at 22:57
feedback

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