vote up 0 vote down star

Hi- I'm putting the network solutions 'seal' image on my site and they give you a javascript that sets the image. I'm wanting the image to align>right. However, if you want the image, they give you a javascript code stub and it handles the rest, which has no alignment property. I've even tried putting the javascript into a table that aligns right but apparently the javascript is rendered after the table is rendered by the browser.

Thoughts on how to get around this?

flag

1 Answer

vote up 4 vote down check

You could wrap the JavaScript code area with a div and give it a class or id. Then you can most likely target it with CSS.

<div id="network-solutions">
    <script type="text/javascript" src="foo.js"></script>
</div>


#network-solutions img {
    float:right;
}
link|flag
Might want to do a span, the div is a block element – Mike Robinson Jan 2 '09 at 19:56
PERFECT! Thank you! – asp316 Jan 2 '09 at 20:11

Your Answer

Get an OpenID
or

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