RP1America
Technical User
I am having a hard time positioning an external js script on my site in IE8 (works in previous versions). I am wanting it centered, yet it is positioning left inside its parent.
Here's an excerpt:
Any thoughts?
Here's an excerpt:
Code:
<div id="center">
<div id="bottom">
<script type="text/javascript" src="//tracedseals.starfieldtech.com/siteseal/get?scriptId=siteSeal&sealId=55e4ye7y7mb73ad5f8b9f3c0e5d53uw79103y7mb7355e4ye7947991334978a9b" id="siteSeal"></script>
<br /><br /><br /></div>
</div>
Code:
#center {
text-align: center;
}
#bottom {
float: left;
width: 720px;
padding: 12px;
border: 0px;
height: 70px;
background-image:url('images/bg_seal.jpg');
background-repeat:repeat-y;
margin: 0px 0px 4px 0px;
background-color:#000000;
}
Any thoughts?