CODE
<style type="text/css">
#memoryticker{
width: 448px;
}
</style>
#memoryticker{
width: 448px;
}
</style>
So, I've got this as part of the stylesheet for a JavaScript I'm using (I removed the irrelevant parts of the code for this question).
When it's at width:448, it aligns itself properly with the image it's next to perfectly - for FireFox
When it's at width:450, it aligns itself properly with the image it's next to perfectly - for Internet Explorer
Too see what I'm doing, visit this page: http://gunbound.trap17.com/phpBB
You will see News/Updates. That's an image that's 450px wide. Below that is the Javascript, which in Firefox needs to be 448px wide because it has the 1px border on the sides (1px border * 2 + 448 = 450).
IE does not add the border pixels to the width, making it 2 pixels short.
I need to make it so that [if IE], the style will be width:450
Can I use an [if IE] tag in there somehow?

