Graphic overlaps text in Netscape 4.7 for Mac

Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Graphic overlaps text in Netscape 4.7 for Mac

    In Netscape 4.7 Mac, I have some graphics that are GIF images of text (so that the text appears to be in Futura) in the same table cell as some HTML text. Now I placed a break tag after the GIF image but it still overlaps some of the HTML text obscuring it and preventing the paragraph from being read properly. I'll leave a link to a page that I know has this problem. And this only happens in NS 4.7 Mac.

    Any ideas on how to fix this would be greatly appreciated!

    Thanks!




    Referring URLs
    [url]http://www.jeremyhill.com/rw/pages/pf_custdes.html[/url]




    jhapple25 webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Text on top of a graphic
      InDesign CS - newbie - When I put text on top of a graphic it does not show. Only the text frame shows and I can color this but no text shows. I do...
    2. text over graphic
      I would like to be able to put text over a graphic and where the graphic is for the text to be white. When the text is not over the graphic I would...
    3. Dyn text over a graphic in scroll pane?
      Has anyone had success with getting dynamic text over a graphic in a scroll pane? I'm using MX with no luck. If you need to see where I am putting...
    4. Simple Text Graphic
      I'm creating a simple desktop background in a blue with one row of text in a lighter shade of blue. When I save this as a bitmap and replace my...
    5. mouseover drop down text overlaps text on page, unreadable!
      Hello, I would appreciate any suggestions on this problem. When I place my mouse over an area that has a drop down menu, the text overlaps with...
  3. #2

    Default Re: Graphic overlaps text in Netscape 4.7 for Mac

    "jhapple25" [email]webforumsuser@macromedia.com[/email] wrote:
    > In Netscape 4.7 Mac, I have some graphics that are GIF images of text
    > (so that the text appears to be in Futura) in the same table cell as
    > some HTML text. Now I placed a break tag after the GIF image but it
    > still overlaps some of the HTML text obscuring it and preventing the
    > paragraph from being read properly. I'll leave a link to a page that I
    > know has this problem. And this only happens in NS 4.7 Mac.
    >
    > Any ideas on how to fix this would be greatly appreciated!
    >
    > Thanks!
    >
    >
    >
    >
    > Referring URLs
    > [url]http://www.jeremyhill.com/rw/pages/pf_custdes.html[/url]
    >
    >
    >
    >
    NN4x can be a problem browser to design for. To correct the issue you
    are experiencing delete the style you have applied to the nested tables
    cell, ie lightblue.

    Select (highlight) the first block of text and apply the lightblue
    styling to it. This makes it a <span> class. Do the same for the second
    block of text.

    This should get around the problem. Normally if you are going to support
    NN4x I would advise that every element be inserted into its own personal
    cell. That way it cant be affected by any styling applied to other
    elements which may surround it.


    osgood Guest

  4. #3

    Default Re: Graphic overlaps text in Netscape 4.7 for Mac

    "jhapple25" [email]webforumsuser@macromedia.com[/email] wrote:
    > In Netscape 4.7 Mac, I have some graphics that are GIF images of text (so that the text appears to be in Futura) in the same table cell as some HTML text. Now I placed a break tag after the GIF image but it still overlaps some of the HTML text obscuring it and preventing the paragraph from being read properly. I'll leave a link to a page that I know has this problem. And this only happens in NS 4.7 Mac.
    >
    > Any ideas on how to fix this would be greatly appreciated!
    Put a nested table inside that cell, with a cell each for the two images
    and the text blocks. Here's the entire table that should go into the
    editable region "content here":

    <table border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr>
    <td align="left" valign="top">
    <table width="100%" border="0" cellspacing="0"
    cellpadding="0">
    <tr align="left" valign="top">
    <td width="265"><img src="../images/img_cd1.gif"
    width="265" height="86" border="0" alt="You dream it."></td>

    <td rowspan="2" width="267">
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td><img src="../images/img_cd3.gif" width="225"
    height="43" alt="Architects have complete design flexibility."
    border="0" vspace="2" hspace="0"></td>
    </tr>
    <tr>
    <td>Quite simply, we want all of our customers to be
    completely
    satisfied with the end result. To ensure we allow
    architects
    complete design flexibility. From small details to
    elaborate
    features, we will work with you to realize both your
    structural
    needs and your design dreams. </td>
    </tr>
    <tr>
    <td><img src="../images/img_cd4.gif" width="237"
    height="21" alt="Royall Wall Systems, Inc.," border="0" vspace="2"
    hspace="0"></td>
    </tr>
    <tr>
    <td>is a company totally committed to excellence in
    customer service.
    Our precast concrete wall system has been tested and
    proven
    since 1989. Year after year we deliver a
    premium-quality product
    with professionalism fro a competitive price when
    compared to
    other building systems. So when it’s time to
    design your
    residential home, you can count on us to produce
    unique materials
    to your exact specification and satisfaction. </td>
    </tr>
    </table>
    </td>
    <td rowspan="2"><img src="../images/spacer.gif"
    width="46" height="10"></td>
    </tr>
    <tr align="left" valign="top">
    <td width="265"><img src="../images/img_cd2.jpg"
    width="265" height="314" border="0" alt="Houses"></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

    --
    Dan Vendel - *GOF*
    [url]http://www.vendel.info[/url]
    Contact me directly by clicking here:
    [url]http://contact.vendel.info[/url]
    Formmail tutorial:
    [url]http://www.vendel.info/tut/formmail.html[/url]
    Nested table demonstration:
    [url]http://www.vendel.info/tabletut/[/url]

    Dan Vendel *GOF* Guest

  5. #4

    Default Re: Graphic overlaps text in Netscape 4.7 for Mac

    Remove <p> tag, perhaps.
    Mick

    "\"jhapple25\" webforumsuser"@macromedia.com wrote:
    > In Netscape 4.7 Mac, I have some graphics that are GIF images of text (so that the text appears to be in Futura) in the same table cell as some HTML text. Now I placed a break tag after the GIF image but it still overlaps some of the HTML text obscuring it and preventing the paragraph from being read properly. I'll leave a link to a page that I know has this problem. And this only happens in NS 4.7 Mac.
    >
    > Any ideas on how to fix this would be greatly appreciated!
    >
    > Thanks!
    >
    > Referring URLs
    > [url]http://www.jeremyhill.com/rw/pages/pf_custdes.html[/url]
    mick_white 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