Overlapping Text on ASPX Pages (seen on some browsers)

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Overlapping Text on ASPX Pages (seen on some browsers)

    I've put up a few simple ASPX pages and they seem to display fine on all of
    the IE versions in my office, but periodically I hear from a remote user
    that the various text elements (distinct sections in tables, panels or just
    laid in) are overlapping.

    I'm using Arial pretty exclusively as a font.

    What should I check on to see what is causing this problem on some browers?
    Is this a screen resolution issue? An available font issue?

    TIA

    Harry


    Harry Whitehouse Guest

  2. Similar Questions and Discussions

    1. Pages look different in different browsers
      Here's another one -- my edited pages look great in Firefox once published, but are missing words and pics in Internet Explorer (that DO exist in the...
    2. Shifting Text and Overlapping Characters in PDF
      Some of my co-workers are finding that some of the PDFs exported out of InDesign CS2 have text problems. Some sentences aren't aligning to the margin...
    3. Datagrid overlapping text below it
      I’ve asked this question few days ago. However, I did not get a reply. So, I thought may be I should rephrase my questions. This is my question...
    4. Overlapping Text on Printout
      I have a database that has a large text field (font - Arial). When I print a record, some characters blend together. There appears to be no problem...
    5. aspx pages not displaying in ie6
      When aspx pages are made in vs.net, loading on the local host displays the labels all in the top left corner of the screen. Also, all textboxes and...
  3. #2

    Default Re: Overlapping Text on ASPX Pages (seen on some browsers)

    Different browsers display HTML differently.
    The only way to find out for sure how it will display in different browsers
    is to test it with each browser that you choose to support.
    It sounds like your problem is related to the grid layout positioning of
    your page.
    One solution would be to switch to Flow layout instead.

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]


    "Harry Whitehouse" <harry@envmgr.com> wrote in message
    news:%2378mQo9TDHA.1552@TK2MSFTNGP12.phx.gbl...
    > I've put up a few simple ASPX pages and they seem to display fine on all
    of
    > the IE versions in my office, but periodically I hear from a remote user
    > that the various text elements (distinct sections in tables, panels or
    just
    > laid in) are overlapping.
    >
    > I'm using Arial pretty exclusively as a font.
    >
    > What should I check on to see what is causing this problem on some
    browers?
    > Is this a screen resolution issue? An available font issue?
    >
    > TIA
    >
    > Harry
    >
    >

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Overlapping Text on ASPX Pages (seen on some browsers)

    you are probably using grid mode. this will cause overlapping if the viewing
    browser is not setup simular to the design one. this is because the layout
    is in pixels, and the size of a font string depends on the font resolution.

    to be sure elemets are not too tight together, switch to large fonts on your
    box and redesign the page. try several different screen resolutions also.

    you may want to use flow mode which doesn't have this issue.

    -- bruce (sqlwork.com)


    "Harry Whitehouse" <harry@envmgr.com> wrote in message
    news:#78mQo9TDHA.1552@TK2MSFTNGP12.phx.gbl...
    > I've put up a few simple ASPX pages and they seem to display fine on all
    of
    > the IE versions in my office, but periodically I hear from a remote user
    > that the various text elements (distinct sections in tables, panels or
    just
    > laid in) are overlapping.
    >
    > I'm using Arial pretty exclusively as a font.
    >
    > What should I check on to see what is causing this problem on some
    browers?
    > Is this a screen resolution issue? An available font issue?
    >
    > TIA
    >
    > Harry
    >
    >

    bruce barker Guest

  5. #4

    Default Re: Overlapping Text on ASPX Pages (seen on some browsers)

    Thanks all for your great suggestions!

    If I simply change the page layout property to "flow" and rebuild, will that
    actually convert to flow layout? I ask because when I did this nothing
    noticably changed on my machine.

    TIA

    Harry


    Harry Whitehouse 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