Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default dhtml and tables

    I'm using this Coffeecup free dhtml menu creator and I've found that it
    generates its code in an absolute format. This is a problem for be because I've
    generated my entire site in Dreamweaver 8 using tables and I need to control
    exactly where my dhtml menu is located. When I paste my code into the table
    code section and preview in IE6, the table does not wrap the location of my
    dhtml menu and it gets stuck in the top left corner of the browser. Is there
    any good dhtml software that generates code in a relative format - or is there
    a way to control exactly where my absolute table is placed within the browser?
    Thanks!

    mmmmmike Guest

  2. Similar Questions and Discussions

    1. DHTML TAB and CFQUERY
      HI I want to embedd a query results into the DHTML TAG but do not have any idea how can I do this. I mean that when 1 tab is clicked the query...
    2. DHTML and RegisterStartupScript
      I have some DHTML actions which work very well at a page level. However when I take everything and make a control it just falls apart. Everything...
    3. DHTML
      I have never used DHTML so my question is... why should I consider It? I am using HTML and Flash to acheive every effect on my web site....
    4. DHTML shall i use it or not
      Hi, i wanted to create an effect where if you rollover a button, text or an image would appear on the right. I was told that this could be created...
    5. Dhtml GuestBook
      I am on free web hosting and not supporting php or any lauguage so is there a dhtml guestbook I can install on my site which don't require any...
  3. #2

    Default Re: dhtml and tables

    Update: I inserted an iframe into my document to hold the JS code, while
    allowed me to maneuver the menu as I pleased. Only problem now, is IE and FF
    render differently, see here:
    Here is what it looks like in IE6:



    Looks good. Now, here is what I'm dealing with in Firefox 1.5:



    Basically what I have is a grey bar on a redish background. As you can see,
    the js menu fails entirely to overlap the red bar in FF1.5, yet it does what
    its supposed to in IE6. Same effect on multiple machines.

    Here is the relevant source of the index.html file:

    Code:
    <table width="780" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <th height="9" bgcolor="#BF4F40" class="mediumgreen" scope="col"></th>
    </tr>
    </table>
    <table width="780" height="25" border="0" align="center" cellpadding="0"
    cellspacing="0">
    <tr>
    <th width="780" height="25" bgcolor="#99A4A0" scope="col"><iframe
    scrolling="no" width="778" height="25" SRC="hello.html"
    frameborder="0"></iframe>
    
    </th>
    </tr>
    </table>

    Any reason why FF won't render the menu but IE will?

    mmmmmike Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139