Having some major issues with a CSS file and flash positioning. I’m a bit of a noob when it comes to using DIV positioning (i’ve been using tables for years and finally decided to join the 21st century).
I took this page over from a previous author so I’ve had to retrofit the code to make it work. The problem is - the flash navigation bar on top should be about 10 pixels to the left and up a little bit…how can i reposition it?
here’s the url in question: http://clairvoyancydesign.com/beta/theory/about.php
here’s how it’s supposed to be positioned: http://clairvoyancydesign.com/theory/about.php
Here’s the code for the flash div:
<div id="bionav">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="300" height="76" id="bionav">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="/theory/about_us.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="about_us.swf" quality="high" bgcolor="#ffffff" width="300" height="76" name="about_us" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</div><!-- end bionav -->
…And here’s the code for the CSS file in question:
#theory #one {margin: 0; padding: 0 0 0 148px; width: 332px;}
#lw #content {background: transparent url(/i/about_lw.gif) 42px 100% no-repeat;}
#lw #one {background: none;}
#cp #content {background: transparent url(/i/about_cp.gif) 42px 100% no-repeat;}
#cp #one {background: none;}
#sw #content {background: transparent url(/i/about_sw.gif) 42px 100% no-repeat;}
#sw #one {background: none;}
#jl #content {background: transparent url(/i/about_jl.gif) 42px 100% no-repeat;}
#jl #one {background: none;}
#bionav {position: absolute; left:50px; top:50px float: left; width=300px; height=76px;}
The left and top values on “bionav” are meaningless, i was just trying to type in some extreme values and see what happened.
I’m on a bit of a time crunch here…i’d be eternally grateful if someone could enlighten me.
thanks!