> > I have enclosed a table within a <div> tag for the purpose to apply a > curved border and shadow. > General note: <table> tags should just be used, if the data in them is tabular data. <table>s shouldn't be used for styling. Therefore you have CSS. Also HTML (especially HTML5) offers a lot of other tags to logically divide your data.
> Problem: All works fine for the area intended however I am getting a > second box on the bottom of the page. > > I checked the coding with Firebug and this is what I saw which is > completely hidden when using my editor Dreamweaver. > > <div id="_GPL_e6a00_div" style="position: absolute;"> > <object id="_GPL_e6a00_swf" width="1" height="1" > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http:// > download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab<http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab>"> > > > </div> > > Using firebug "inspect element" I find the following code: > <object id="_GPL_e6a00_swf" width="1" height="1" > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http:// > download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab<http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab>"> > > > <param name="movie" value="http://d3lvr7yuk4uaui.cloudfront.net/items/ > e6a00/storage.swf<http://d3lvr7yuk4uaui.cloudfront.net/items/e6a00/storage.swf>"> > > > <param name="FlashVars" > value="logfn=_GPL.items.e6a00.log&onload=_GPL.items.e6a00.onload&onerror=_GPL.items.e6a00.onerror&LSOName=gpl"> > > > <param name="allowscriptaccess" value="always"> > <embed align="middle" width="1" height="1" src="http:// > d3lvr7yuk4uaui.cloudfront.net/items/e6a00/storage.swf<http://d3lvr7yuk4uaui.cloudfront.net/items/e6a00/storage.swf>" > > > bgcolor="#ffffff" name="_GPL_e6a00_swf" play="true" loop="false" > quality="high" allowscriptaccess="always" type="application/x- > shockwave-flash" > flashvars="logfn=_GPL.items.e6a00.log&onload=_GPL.items.e6a00.onload&onerror=_GPL.items.e6a00.onerror&LSOName=gpl" > > > pluginspage="http://www.macromedia.com/go/getflashplayer<http://www.macromedia.com/go/getflashplayer>"> > > > </object> > > Please see here and provide comments: > http://floridawebportals.com/css-borders/<http://floridawebportals.com/css-borders/> > > > How is this coding placed in page? What am I doing that prompts this > coding? It seems that it is added on the server side, but why? > The page doesn't include the code above. So it's hard to say what's causing it. It's definitely not Firebug. To check if the code is included on the server side you can switch to the * Net* panel <http://getfirebug.com/wiki/index.php/Net_Panel> and search within the response bodies for e.g. _GPL_e6a00_swf. Also make sure you don't have another Firefox extension that adds the code. > Just started CSS recently but this is an unexpected event. Thanks for the > help! As I see it the CSS is not the problem here, it is the additional HTML for your Flash file. But if you want to learn more about CSS, there are plenty of good tutorials <https://www.google.com/search?q=css+tutorial> about it. Sebastian -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at https://groups.google.com/forum/#!forum/firebug
