I have a page that looks fine in dreamweaver and in IE when I check it from DW. Once I upload it...files are missing, another table is kicked outside the page area.
the page is:
www.imm.edu.

Any suggestions? I'm a graphics person learning web stuff, but this is the first completely doesn't make sense thing I've hit.

Thanks,
Denise

Recommended Answers

All 6 Replies

I'd need to see your code or the site...

the page in question here is

www.imm.edu

It is the home page. My swf should be in the right column (there's a cutline with nothing above it) A table on the left spills off the page. I can post code here if this doesn't help

I took a look at your site in both IE and FireFox and the only problem I see is that your ministry partners section is spilling over your footer

Thanks for taking a look. This is great to have someone to help! I can't find what is causing the problem with the ministry partners. It seems to be fine. (I've inherited this site so there are lots of pieces I don't understand.) What could I look for to realign that column?

My SWF file for Holland SHOULd appear just beneath the "Previews" button. It has vanished but is still in my folders on the server. Any ideas?

I found the problem...

You have

<p class=bullets11bldblck align=center>
  <br>
  <noscript>
    <object codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0  height=185 width=300 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>
      <param name="movie" value="Resources/HollandRoll.swf">
      <param name="quality" value="high">
      <embed src="Resources/HollandRoll.swf" quality="high"  pluginspage="http://www.macromedia.com/go/getflashplayer"  type="application/x-shockwave-flash" width="300"  height="185">
      </embed>
    </object>
    </OBJECT>
  </noscript>
</p>

You need to remove the noscript tags and that extra closing object tag.

<p class=bullets11bldblck align=center>
  <br>
  <object codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0  height=185 width=300 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>
    <param name="movie" value="Resources/HollandRoll.swf">
    <param name="quality" value="high">
    <embed src="Resources/HollandRoll.swf" quality="high"  pluginspage="http://www.macromedia.com/go/getflashplayer"  type="application/x-shockwave-flash" width="300"  height="185">
    </embed>
  </object>
</p>
commented: I so appreciate DJs help. I was really stuck and he came back and kept looking at this with me. I'm thrilled with the help. +1

Hurray for Deacon J! The home page looks normal again. FYI dreamweaver asked to update code for IE 6 and added several object tags which I was confused about. Next time it asks to update anything I'm saying no!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.