View Single Post
Old 10-05-2012, 08:39 PM   PM User | #10
Old Pedant
Supreme Master coder!

 
Old Pedant's Avatar
 
Join Date: Feb 2009
Posts: 23,556
Thanks: 62
Thanked 4,054 Times in 4,023 Posts
Old Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to allOld Pedant is a name known to all
If worst comes to worst, you could always solve the problem by putting the <object> and adjacent <img> into <div>s that you specify the positions of.

Something like this:
Code:
<div style="position: relative; width: 100%;>
    <div style="position: relative; width: 50%; text-align: right;">
        <object style="width: 80%; margin-right: 5px;" ...>
    </div>
    <div style="position: relative; width: 50%; text-align: left;">
        <img style="width: 80%; margin-left: 5px;" ...>
   </div>
</div>
THat's just a stab in the dark. Play with it. But in any case, it's clearly nothing to do with JavaScript.
__________________
An optimist sees the glass as half full.
A pessimist sees the glass as half empty.
A realist drinks it no matter how much there is.
Old Pedant is online now   Reply With Quote