Header is too wide, inconsistent...

Hello,
Can someone look at our website http://www.cdvinc.com/ and explain to me why this header (topmenu.php) fits nicely on most pages, but is too long on some other pages like thishttp://www.cdvinc.com/designs_telecom.php.  Please give my simple instructions and I can fix it.  I did go in and make the information at the bottom more narrow, but it did nothing for the top and I think that is where the problem is.
Thank you...
T

Treza500 wrote:  Can someone look at our website http://www.cdvinc.com/ and explain to me why this header (topmenu.php) fits nicely on most pages, but is too long on some other pages. . . .
I would begin my investigation with the following set of code that I found at the top of your <body> tag:
<body onLoad="MM_preloadImages('images/menu_faq2.gif')">
<tr>
  <td><table width="100%" border="0" cellpadding="0" cellspacing="0">
      <tr>
This appears very unusual to me and is likely to lead to inconsistencies across browsers.  The normal order for <table>, <tr> and <td> is something quite different.  It is something much closer to <table><tr><td>Content</td></tr></table> with any number of <td> tags nested inside <tr> tags that are nested within the <table> tag.
The references that I am providing should help you get your HTML structural house in order.
REFERENCE ONE:  http://www.w3schools.com/tags/tag_table.asp
REFERENCE TWO:  http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.cdvinc.com%2F
Roddy

Similar Messages

  • Movies Too Wide For Screen?

    Recently got a new Ipod Classic (160gb) and some of the podcasts and movies and stuff are cut off on both sides of my ipod. They fit the top and bottom of the screen, but are too wide. Whats up?

    Hello nick4tivy,
    And welcome to Apple Discussions!
    Have you made sure you haven't turned widescreen on? To check head to the Videos section of your iPod and choose "Settings". Make sure *TV Screen* is set to Standard and see if that helps.
    Otherwise, depending on where the video came from, you may have to use a third party utility to help change the resolution of the video. If it was downloaded from iTunes, you will not be able to do anything about it. Sorry.
    B-rock

  • I am trying to download my paid for Elements 13 upgrade. When I click on the "download" button, I recieve this message: 413  Header Length too Large

    I am trying to download my paid for Elements 13 upgrade. When I click on the "download" button, I receive this message: 413  Header Length too Large.  Help?

    You can download using direct download link , which I had provided.
    Download Photoshop Elements products | 13, 12, 11, 10
    During installation , when prompted enter serial number and proceed with the installation .
    If you had purchased upgrade serial number.
    First enter Photoshop Elements 13 serial number .
    Then it will ask for previous qualifying version serial number.
    From the drop down list , select Photoshop Elements 12 and then enter Photoshop Elements 12 serial number 

  • Navigation bar too wide for template graphic after creating new page

    I want to stick within the templates, but I have a lot of pages and don't want them all in the nav bar. When I flagged a page to keep it out of the NAV bar, the NAV bar get messed up - not properly displaying at the edge of the template, like it made room for the hidden page's link then re-adjusted itself too wide for the background graphic. I've got the problem in the elegant template when displayed in IE on Windows (1024X768). Safari on my mac looks OK. Are there any other setting changes I can make to be better compatible?
    Thanks
    Anne

    It appears to have been a cache issue or some such. I no longer see the problem

  • How to sort out error downloading perpetual license of the CS6 Design Standard for MAC: JRun Servlet Error 413  Header Length too Large?

    How to sort out error downloading perpetual license of the CS6 Design Standard for MAC: JRun Servlet Error 413  Header Length too Large?
    Just bought the perpetual license online - student-teacher version. Received email confirming my eligibility and followed all instructions to a 't', but still got this 413 error message, and cannot continue.
    Would anyone be able to help me?
    Or how can I get in touch with Adobe themselves?
    How do you get to the chat? I bought it with their help, but cannot remember how to get there again. Took me ages to find the chat.
    Cheers!!! Thanks a million! Any help is welcome!!!!

    Make sure you have cookies enabled and clear your browser's cache before you try downloading.  If it continues to present that error try using a different browser.
    As far as getting to a chat link goes, it can be hit or miss...  Start Here  If after selecting relevant responses you are unable to find a solution, choose "Still need help? Contact us." and the chat contact option.

  • Hi.  I purchased Adobe Acrobat Xi Pro from a store (card).  I submitted the number (under the scratch area on the card) on the adobe website, with my personal details etc.  When I submitted the form, I got an error message:  413 header length too large (a

    Hi.  I purchased Adobe Acrobat Xi Pro from a store (card).  I submitted the number (under the scratch area on the card) on the adobe website, with my personal details etc.  When I submitted the form, I got an error message:  413 header length too large (and on top the page reads JRun Servelet Error).  What does this mean? What should I do next?

    Hi.  I purchased Adobe Acrobat Xi Pro from a store (card).  I submitted the number (under the scratch area on the card) on the adobe website, with my personal details etc.  When I submitted the form, I got an error message:  413 header length too large (and on top the page reads JRun Servelet Error).  What does this mean? What should I do next?

  • Anyone know of a way to adjust the top and side MARGINS of a document printed from iOS numbers? The default margins are too wide. Need more working space.

    Anyone know of a way to adjust the top and side MARGINS of a document printed from iOS numbers? The default margins are too wide. Need more working space.

    Open the document,
    Tap the Tools icon (upper right).
    Tap Document Set up.
    Drag the margins to the position you wish (the actual margin width sould display as you are doing this).

  • Chart legend too wide when using horizontal layout

    I am using a flex chart with about 15 series on it. I've set
    the legend direction variable to "horizontal". However since the
    panel width which contains the chart is fixed, the legend sprawls
    out to the right instead of going "wrapping around" nicely to stay
    within the panel. As a result, you can't read the whole legend when
    looking at the chart. The chart itself stays the proper width, but
    the legend is too wide and can only be seen via using the scrollbar
    to move horizontally. How can that be fixed?

    Solerous, you must create a custom legend. Here's an example
    that uses a grid to lay out the individual grid items. If you have
    a variable number of series, then you can probably come up with
    better logic for laying out the legend, but this should help get
    you going.
    hth,
    matt horn
    flex docs
    <?xml version="1.0"?>
    <!-- charts/CustomLegendInActionScript.mxml -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    backgroundColor="white" creationComplete="init()">
    <mx:Script><![CDATA[
    import mx.containers.GridItem;
    import mx.containers.GridRow;
    import mx.graphics.SolidColor;
    import mx.graphics.IFill;
    import mx.charts.LegendItem;
    import mx.charts.Legend;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var expenses:ArrayCollection = new ArrayCollection([
    {Expense:"Taxes", April:2000, May:321, June:131, July:1100,
    August:200, September:1400, October:42},
    {Expense:"Rent", April:1000, May:95, June:313, July:600,
    August:400, September:200, October:52},
    {Expense:"Taxes", April:2000, May:321, June:131, July:90,
    August:500, September:900, October:300},
    {Expense:"Bills", April:100, May:478, June:841, July:400,
    August:600, September:1100, October:150}
    private function init():void {
    for (var i:int = 0; i < myChart.series.length; i++) {
    var li:LegendItem = new LegendItem();
    li.label = myChart.series
    .displayName;
    var sc:SolidColor = myChart.series.getStyle("fill");
    li.setStyle("fill", sc);
    var gi:GridItem = new GridItem();
    if (i < 3) {
    // First row
    gi.addChild(li);
    gr1.addChild(gi);
    } else if (i >= 3 && i < 6) {
    // Second row
    gi.addChild(li);
    gr2.addChild(gi);
    } else if (i >= 6) {
    // Third row
    gi.addChild(li);
    gr3.addChild(gi);
    ]]></mx:Script>
    <mx:Panel title="Bar Chart with Legend" width="500"
    height="600">
    <mx:BarChart id="myChart" dataProvider="{expenses}"
    height="400" showDataTips="true">
    <mx:verticalAxis>
    <mx:CategoryAxis
    dataProvider="{expenses}"
    categoryField="Expense"
    />
    </mx:verticalAxis>
    <mx:series>
    <mx:BarSeries xField="April" displayName="April (in
    $USD)"/>
    <mx:BarSeries
    xField="May"
    displayName="May (in $USD)"
    />
    <mx:BarSeries
    xField="June"
    displayName="June (in $USD)"
    />
    <mx:BarSeries
    xField="July"
    displayName="July (in $USD)"
    />
    <mx:BarSeries
    xField="August"
    displayName="August (in $USD)"
    />
    <mx:BarSeries
    xField="September"
    displayName="September (in $USD)"
    />
    <mx:BarSeries
    xField="October"
    displayName="October (in $USD)"
    />
    </mx:series>
    </mx:BarChart>
    <mx:Grid id="myGrid">
    <mx:GridRow id="gr1">
    </mx:GridRow>
    <mx:GridRow id="gr2">
    </mx:GridRow>
    <mx:GridRow id="gr3">
    </mx:GridRow>
    </mx:Grid>
    </mx:Panel>
    </mx:Application>

  • PDF to TIFF error: Image is too wide to output Acrobat X Pro

    I have been using Adobe Acrobat X Pro to convert PDFs to TIFFs.    All of the sudden this week I am getting an error saying the Image is too wide to convert.  These are files I previously converted without a problem.  I am specifying resolution of 360 pixels in the TIFF settings (which is what I have always used).  I installed the latest maintenance (10.1.12) but still get the error.  The files are 17" wide x 11" high. Any idea why I am getting this error all of the sudden and how to fix it?  I send the files to a colleague on the same Acrobat Pro X release and they do not get the errors.  Reboot resolves for 1 file, then the error comes back.

    The issue should be the resolution.  I've had this same issue before so I'll give you a walk through of what I did.  You will need to reprint your current PDF to a new PDF with a new resolution.  Upon doing that, the new PDF will need to match whatever resolution is being required by whoever is needing this TIFF File, if there is not a requirement just pick one (such as 300 DPI).
    1) In your existing document select Print (Ctrl+P)
    2) Change your current printer to "Print to PDF/Adobe PDF/ ETC..." (whatever it is called)
    3) Select Properties and a dialog box called "Adobe PDF Document Properities" should pop up.
    4) Select the tab labeled Paper/Quality
    5) Select "Advanced..."
    6) There is an option for graphic that should have a print quality labeled " XXXX DPI" (could be anywhere from 72, 300, 600, 1200, 2400, 3600, 4800), select what you want to use, click OK back out to the basic print screen, and print your new PDF and label it whatever you want your TIFF's to be called. (I use 300 as that is what a city I submit to requires for plans).
    7) Open your new PDF, and on your menu bar at the top select EDIT (right next to file) then select "Preferences" at the bottom on the drop-down menu. (or on your keyboard use "Ctrl+K" for a faster way to get to preferences)
    8) From there select Convert from PDF then select TIFF from the list of options from the box in the middle> then select "Edit Settings..." under the box on the far right that has the information about how it saves TIFF Files currently.
    9) There should be a "Save As TIFF Settings" Dialog box that opens up and at the bottom there is a place under "Conversion" that says resolution.
    10) Change the resolution to whatever your new PDF was saved and and that should fix your problem!
    I know some of this was basic stuff but I see this question come up in different places and no one has really mapped it out like above. Hope this helps!

  • DVI plug too wide

    So.  I had a splitter DVI to VGA/DVI.  I had one end into my monitor in one room(DVI) and the other(VGA) through the wall to the back of my HDTV in the other room.  Problem, obviously was, if both were connected to the splitter, you could see the computer screen, but it wouldn't come up on the TV.  So, went to a local reseller of used electronics, bought a DVI to dual VGA splitter(did this to make it easier for the family not having to constantly plug/unplug cords) and went to connect it.  The DVI plug is too wide to fit in the plug in the back of my mini.  Is there a different wider type plug than the standard DVI that I'm not aware of?  I'm going to try and get back to the store and exchange it, but I'm just confused, I thought the outer diameter of the plugs were standard and it was the pins that were different.  Am I missing something somewhere?  Early 2006 Mac Mini

    Can you post a pic of both here using the little Camera icon to upload them in a reply here?

  • Distorted video - too wide

    I have posted about this on Crackberry.com.  But maybe should bring it up here.
    The main problem is that when viewing a video on my Z10, images are stretched left to right and so people are wider than normal and also objects like buildings, etc also are too wide.  It is less noticeable in landscape screens.  Upon a suggestion I received today, I opened the same video in the Z10's Browser and the video is NOT distorted.  But I think that the app should work properly.
    Here's some extracts from the thread:
    http://forums.crackberry.com/blackberry-z10-f254/distorted-video-too-wide-849144/
    I copied a homemade mp4 file to the z10 of one of my vacation trips (I create a dvd movie from the digital photos). The image is "widened" and frankly I don't need any help in the WIDENING area. It seems to show correctly on my PB and on my computer. But on the Z10 it is wide. Pinch does not HOLD - bounces right back to wide.
    There does not seem to be a setting to alter this behavior or appearance. If not connected to the tv, the DISPLAY/hdmi setting is grayed out.
    I just created a new video. Since the phone was going downstairs, I copied the mp4 video to the phone. Plugged it into my tv but, once again, the images are distorted - too wide. So the screen is spread left to right and people are too wide. The effect is less noticeable on Scenery but you can see it for buildings and such. And, it is not just on my TV but it is also evident on the Z10, itself. So, the z10 appears to not be displaying the image or video WIDTH correctly.
    I then copied the same video to my Playbook (another BB device) and the video is fine and NOT DISTORTED.
    I am still on the original Verizon bb10.1.xxxxxxxxxxxx OS.
    Any idea if there is a setting on the phone that I am missing.
    **bleep**! I had not thought about opening the video in the Browser. You are RIGHT - the video proportions are correct when opened in the Browser. So this is a definite bug in the Video app's software or settings. Of course, one should not have to go into the browser to view videos because the app is BROKEN.
    I wonder if Kalemsoft or other video apps performs correctly?
    When I first posted the thread, I did not know if it was my desktop software's coding or resolution or .... So I burned off the video in format after format to no avail. I am somewhat surprised that no one else has raised this issue. Maybe I will take it to the official bb forum.

    derf1 wrote:
    Since I have installed the new update for my Z10 the pages are oversized and I am unable to get to many of the functions in different areas. How do I re-install the software?
    Check Accessibility, magnify mode may be ON.

  • Mac login acounts too wide for the screen

    The older versions worked just fine, but Lion login account icons run left and right and are too wide for the screen on the macmini. So, I have to scroll to get to my account at the end of the list. Is there a way to change this?

    It is possible that the screen is too wide or too high and that the scroll bars fall off.<br />
    Open the system menu via Alt+Space and see if you can resize that window.<br />
    If that works then close Firefox to save that setting.<br />
    See also:
    * http://kb.mozillazine.org/Resizing_oversize_window
    Window sizes and positions are stored in [http://kb.mozillazine.org/localstore.rdf localstore.rdf] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder].
    See:
    * http://kb.mozillazine.org/Corrupt_localstore.rdf

  • Reports Parameter form via rwservlet in 9i Reports display is too wide

    We have an app which was developed in Web Forms 6/6i which we are migrating to 9iAS Release 2/Reports 9i. We are running the .RDF reports using WEB.SHOW_DOCUMENT with rwservlet and PARAMFORM=YES. The parameter form sizes are generally 5x5, but the parameters display much wider in the 9iAS Release 2/Reports 9i environment in the Web Browser than they did in 6i. I have tried making the Parameter Form smaller, but the display still is way too wide: The browser window has to be scrolled several inches to the right to be viewed.
    Any ideas on the root cause of this issue and how to fix? Or, any solutions to fix besides using RUN_REPORT_OBJECT? We don't have time or resources to write 100 parameter forms in Forms and do the call to Reports that way. Any help is appreciated. Thanks.

    Hi Judith, we had the same problem and the fix was to add the following parameter to the reports.sh file in the BI&Forms Oracle home:
    REPORTS_DEFAULT_PIXEL_SIZE=80;
    export REPORTS_DEFAULT_PIXEL_SIZE
    After that, the report server needed to be stopped and restarted for the change to take effect.

  • Width of the Description field is too wide

    Hi all
    i m working on apex 4.0
    in my report page
    the width of the Description field is too wide when the field exceeds 150 characters
    how can i control it?
    plz help.
    thanks,
    annu.

    Annu wrote:
    Hi all
    i m working on apex 4.0
    in my report page
    the width of the Description field is too wide when the field exceeds 150 characters
    how can i control it?
    Search the forum before posting a question.
    In APEX 4.0, set the Column Width property of the text column. Column Width doesn't seem to have made it into the external documentation, but the online help says:
    >
    Specify the column width in pixel. The attribute is used when displaying reports in the browser. Note that setting the column width must be supported by the selected report template.
    >
    Therefore ensure that there is a <tt>#COLUMN_WIDTH#</tt> substitution string in your chosen report template, where the column template(s) should look something like:
    <td #ALIGNMENT# headers="#COLUMN_HEADER_NAME#" class="data" #COLUMN_WIDTH#>#COLUMN_VALUE#</td>In both APEX 4.0 and previous versions you can control column width using the Column Formatting CSS Style property, which allows you to use units other than pixels:
    display: block; width: 10em;Edited by: fac586 on 03-Aug-2011 09:31
    By "Description field" do you mean a report column or a text item? Is this "report" really a report or is it a tabular form?

  • Centering div makes design view too wide

    <div style="width: 100%;">
    <div style="width: 100px; margin-left: auto;
    margin-right: auto;">
    BODY CONTENT
    </div>
    </div>
    Ok, I've been wrapping my body content in the div tags shown
    above rather
    than using a centred table as I did before. The problem I
    have is that
    design view is too wide and I have to use the horizontal
    scroll bars when I
    am using my laptop. It's not a big problem, but was wondering
    if it was
    necessary to have to live with this? Also, is there any
    particular reason
    the div appears yellow in design view?
    Cheers
    ss.

    > an HTML retard
    This is the most important thing for you to work on if you
    want to stick
    with DW.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Synapse Syndrome"
    <[email protected]> wrote in message
    news:[email protected]...
    >
    > "Gary White" <[email protected]> wrote in
    message
    > news:[email protected]...
    >> On Sat, 13 May 2006 15:45:12 +0100, "Synapse
    Syndrome"
    >> <[email protected]> wrote:
    >>
    >>><div style="width: 100%;">
    >>> <div style="width: 100px; margin-left: auto;
    margin-right: auto;">
    >>> BODY CONTENT
    >>> </div>
    >>></div>
    >>>
    >>>
    >>>
    >>>Ok, I've been wrapping my body content in the div
    tags shown above rather
    >>>than using a centred table as I did before. The
    problem I have is that
    >>>design view is too wide and I have to use the
    horizontal scroll bars when
    >>>I
    >>>am using my laptop. It's not a big problem, but
    was wondering if it was
    >>>necessary to have to live with this? Also, is
    there any particular
    >>>reason
    >>>the div appears yellow in design view?
    >>
    >> What's the point of the outer 100% wide div? You get
    exactly the same
    >> thing without it. Your body content is only 100
    pixels wide? There is no
    >> reason for the posted code to show up in yellow.
    Perhaps, if you show
    >> *all* of the code, someone can spot the problem.
    >
    >
    > Thanks, from what you say it seems obvious now. I got
    that code from an
    > earlier post here and was using it without knowing what
    I was doing 'cos
    > I'm an HTML retard.
    http://tinyurl.com/rd6zq
    > I changed the 100px to the max width of the real
    contents and now
    > everything is fine. I don't know what the point of the
    outer div was for
    > in the example, but it does make the design view look a
    bit better for
    > working out my layout I think.
    > Cheers
    >
    > ss.
    >

Maybe you are looking for