Parts of my website have dropped down with IE8. Anyway to fix without downloading the entire website

I'm tired of IE8, but my clients use it. Every once in a while IE throw a wrench in the mix and it makes my web page unreadable. Is there an easy fix with Dreamweaver that can address these ongoing problems. My URL is www.hilladdesign.com
Katyguy

Not sure why you don't have a width set for the container <div>? The site doesnt look 'fluid' to me, ie it doesnt need to flex with the narrowing and widening of the browser window.
I would either set a fixed width for the container OR set a min-width as below.
#container  {
min-width: 900px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    background-color: transparent;

Similar Messages

  • HT4623 I have an account with dropbox but I can't download the dropbox app, I am a Malaysian, how can I download

    Why I can't download dropbox app?

    I'm not saying you don't have the iTunes store in Malaysia, however not all apps are available in all iTunes stores. You need to log into your iTunes store and do a search and see if the app is there and available. If so, then download. If you have trouble doing it on the phone, then download it on the computer and sync.

  • When I go to a drop down menu, for example bookmarks, I mouse over the text and it turns color with a dark bar; can this be fixed?

    I am running Firefox 5 currently. Ever since the last update to Firefox 4 and currently with firefox 5 I have had this issue. The dropdown menu is normal when it first drops down. When i move my cursor over the text in the menu it changes to a dark blue bar and remains that way until I close the dropdown, it resets until i dropdown and mouseover again. When I make a selection in the menu it works fine.
    I have also noticed that the buttons in the browser and in certain websites have a "sweetspot" you have to hit for the button to function. In past versions if you clicked anywhere on the graphical button it would function.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    In Firefox 4 [http://kb.mozillazine.org/Safe_mode Safe mode] disables extensions and disables hardware acceleration.
    * Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    If disabling hardware acceleration works then check if there is an update available for your graphics display driver.

  • SCAC Field Should have Drop Down Values and ASN should have Storage locatio

    Hi ,
    We have a requirement while creating ASN in which we have to add SCAC ID  in the SCAC field ( Carrier)  this SCAC ID comes in Shipping details  - We want to have drop down values in this field and also if we dont enter value in this field An Error Message should come like " Maintain SCAC code.
    And also the PO's coming from ECC are not carrying Storage location information - Is there a specific config / enhancement to be done.
    And in ASN can we have Storage location ?
    Thanks,
    Mahesh

    Hi Mahesh
    Regarding adding fields to UI
    Refer below links
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e0b0e544-7a06-2d10-539d-f8648358ba67?quicklink=index&overridelayout=true
    http://wiki.sdn.sap.com/wiki/display/SCM/SAPSupplyNetworkCollaboration%28SAP+SNC%29
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/908c1e69-0a01-2d10-e7a6-98ca00f19aa6?quicklink=index&overridelayout=true
    Not sure how to maintain it as a drop down, a developer could help you easily with that.
    Regarding Storage location from PO ECC.
    If you are using idocs, the standard SAP xml conversion will not be able to transfer this(if you download standard content)
    You can find the field in your IDOC ORDERS05, Data records-Segement-E1EDP01FIELDLGORD
    In order to transfer this, you need to rewrite the xml format in integration builder of XI/PI and then add some UI fields in Webui
    to show.
    But xml PurchaseOrderERPReplenishmentOrderCollaborationNotification as of SAP ECC EHP4 can carry this information in its payload document(SXI_MONITOR---INBOUND MESSAGE ---PAYLOADS) Under the node INVENTORY MANAGED LOCATION
    Not sure where this field is mapped to .........
    I will let you know once i find........Mean while you can ask any developer who worked on webdynpro .
    Yes we can have this field once we find where it is mapping, if you are using idocs then even the XML has to be build in PI
    accordingly.
    Best Regards
    Vinod

  • Where's the drop-down with "Recent places" in "Open File" dialogue?

    Hi,
    Until Mountain Lion, all "Open file" dialogue boxes included at the top a drop-down list with higher-level locations as welll as "recent places" - folders that were recently used to open files.
    In apps such as Smultron, this is hugely efficient and I would say the vast majority of the file I open, I access via that drop-down.
    Now, in apps that support iCloud, the UI of the "Open file" dialogue has changed significantly - with that drop-down now completely missing!!!
    I am actually really really upset about this feature being removed. Is there ANY way to bring it back? I waste so much time now in opening files, it's ridiculous.
    Thanks,
    Biranit

    Wierdly the only way I have found to bring this essential piece of the open file dialog box back is to disable icloud "Docuemetns & Data". Then hey presto the view controls are back on the top and the drop-down returns.
    ...but you don't have icloud documents any more
    Sounds like a wierd omission in Mountain Lion if you ask me.  I use that drop-down all the time...

  • Populating drop down with search help

    I have drop down to populated in WD,but i dont want it to be populated with the field values  from ddic,instead iwant the  the search help  values for this field in the ddic.Say for example i have the Carrid field with  values AA,BB and so on in the ddic table  and in the search help d description is there like for AA->american airlines and so on .so i dont want to populate my drop down with aa,instead i want american airlines.Please advice.

    you can try this ,
    1.after creating the attribute which you wanna populate in the context of your node .
    2.Go to do inint method of your view and try using the code below with node and attributes which you need.
    method wddoinit .
    data:     rootnode_info type ref to if_wd_context_node_info,
          rootnode_info1 type ref to if_wd_context_node_info,
          it_value_bet type table of wdr_context_attr_value.
         " node_arrid type ref to if_wd_context_node_info.
    rootnode_info = wd_context->get_node_info( ).
    " ADD A CHILD NODE TO THE ROOT.
    call method rootnode_info->get_child_node
      exporting
        name       = 'ARRANGEMENT_ID'
      receiving
        child_node = rootnode_info1.
    data:    lt_valueset type wdr_context_attr_value_list  ,
          l_value type wdr_context_attr_value.
    " fill up internal table from table***********************
    data : itab_pa_id type standard table of /sappssrm/pa_idt,
           wa_sappssrm_pa_id like line of itab_pa_id.
    select * from /sappssrm/pa_idt into table itab_pa_id.
    loop at itab_pa_id into  wa_sappssrm_pa_id.
       l_value-value      = wa_sappssrm_pa_id-arrangement_id.
       l_value-text    =  wa_sappssrm_pa_id-description.
    insert l_value into table lt_valueset.
    endloop.
    I guess this should help .
    Regards,
    Abhishek

  • Connecting drop-down with check boxes?

    I am making a document which provides information about retrieving documents for several countries. The user will use this form as a reminder for himself, this way he can see which documents he needs and which documents he still needs to make, or recieve from someone else. Whenever he recieves a document he can check the checkbox. The document is made in InDesign so it is a simple PDF. I have made this in to a form. It looks like the following example:
    Select country: Drop-down with items/countries: Netherlands, Belgium and Germany.
    Needed Documents
    Transport
    Bank
    Owner
    Document 1
    checkbox
    checkbox
    checkbox
    Document 2
    checkbox
    checkbox
    checkbox
    Document 3
    checkbox
    checkbox
    checkbox
    The main lead is the country which is build from a drop-down. For example: you can select the Netherlands, Belgium and Germany. Whenever you select a country the checkboxxes(made in Acrobat) should apear.
    But here's the thing: Not all countries need the same documents, so whenever a country does not require (for example) document 3, all checkboxxes of that line should not be visible for the selected country. And on document two the checkbox of the bank should not apear as well.
    I have some experience with creating forms, but not in javascript so I was hoping some of you could help me creating this base for the document?
    Thank you in advance,

    Is it even possible?

  • My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad one.

    My IPad cannot download live Tv from skygo. I have no problem with my lap top so I assume the broad band is okay. Can anybody suggest why the live streaming will not work on my iPad .

    Are you using the Sky Go app to try and watch it ? If so are you logged in with your Sky account ?
    If you are using the app then you could try closing the app completely and see if it works when you re-open it : from the home screen (i.e. not with Sky Go 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Sky Go app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • This is my first use of this program. How do I remove a page break? How do line up my drop down box along side the text box on the left of it? The drop down is for a multiple choice answer for the question to the left.

    This is my first use of this program. How do I remove a page break? How do line up my drop down box along side the text box on the left of it? The drop down is for a multiple choice answer for the question to the left of each drop down.

    See McAfee support to find out how to disable that McAfee feature - that isn't part of the normal Firefox installation.

  • The drop down view by menu (Song, album, etc) at the right side of the iTunes window is like a ghost. It flashes into view for a millisecond once in awhile but never lets me click on it. Anyone know what this is about and what to do?

    The drop down view by menu (Song, album, etc) at the right side of the iTunes window is like a ghost. It flashes into view for a millisecond once in awhile but never lets me click on it. Anyone know what this is about and what to do?

    Short answer:
    Click Hide Song(s), it is what you wanted to do...
    Long answer:
    iTunes in the Cloud is a feature of your iTunes store account that allows you to redownload or stream your past purchases. When you delete a purchased track that is downloaded to your computer (like the first one shown here) you are asked if you also want to hide the song from iCloud. This would remove it from the computer and also stop it showing up with the iCloud symbol as the other tracks from that album (which are not downloaded) do.
    If a track shows with the cloud symbol you can play (stream) it by double-clicking the title, or click the cloud symbol to download a local copy to your library. If you try to delete one of these tracks you get a slightly different message confirming that you want to hide the track. Clicking hide will remove the listing from the library and any other device that shows your past purchases.
    Should you want to retrieve any item hidden in this way at a later date use Store > View My Account > iTunes in the Cloud > Hidden Purchases > Manage.
    To hide all your previous purchases that are not downloaded to your computer use Edit > Preferences > Store and untick Show iTunes in the Cloud purchases.
    tt2

  • Have new iMac with iPhoto sharing turned on. When the shared library is clicked the library disappears or starts to load then disappears? What is wrong?

    Have new iMac with iPhoto sharing turned on. When the shared library is clicked the library disappears or starts to load then disappears? What is wrong?

    Try this:  launch iPhoto with the Option key held down and create a new, test library.  Import some photos and check to see if the same problem persists. If it doesn't then your current library is damaged and needs repair.
    Therefore  make a temporary, backup copy (select the library and type Command+D) and  apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Since only one option can be run at a time start with Option #1, followed by #3 and then #4 as needed.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    If you experience the same problem with the test library then try this basic fix a try:  make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    NOTE 2:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    If that fails a reinstall of iPhoto is indicated. To do so you'll have to delete the current application and all files with "iPhoto" in the file name with either a .PKG or .BOM extension that reside in the HD/Library/Receipts folder and from the /var/db/receipts/  folder,
    Click to view full size
    Then install iPhoto from the source it came on originally.
    OT

  • HT1719 I am trying to sync my ipod shuffle to the itunes on my computer.  When I try to sync I go to the drop down file tab.  PULL up "devices" But the extended options of SYNC, RESTORE, Transfer and Backup won't allow me to click on them.  How do I activ

    I am trying to sync my ipod shuffle to the itunes on my computer.  When I try to sync I go to the drop down file tab.  PULL up "devices" But the extended options of SYNC, RESTORE, Transfer and Backup won't allow me to click on them.  How do I activate?

    Those menu bar commands are disabled when you do not have a device (your shuffle) selected in iTunes.
    If the iTunes sidebar (along left side of iTunes) is hidden, from the menu bar, under View, select Show Sidebar.  In the sidebar, your shuffle should be listed under DEVICES.  Click on it there to select it.  Now, those commands under the File menu should be accessible.
    However, once you have the shuffle selected, many of those "device-related" commands in the menu bar are also on the iTunes window.  For example, there is a Sync button at the low-right corner of the window, which does the same thing as the command in the menu bar.

  • Hello i have a problem with my MacBook Air they wiped out the operating system then installed windows 7 how do i re install the apple firmware

    Hello i have a problem with my MacBook Air they wiped out the operating system then installed windows 7 how do i re install the apple firmware please help

    That is incorrect. You can install Windows on a Mac, any Mac, without having OS X installed on it.
    To the OP you will need the original system reinstall USB thumb drive that came with your Mac Air if it is older than a Mid 2011 model or if it is newer than a Mid 2011 model you use the Online Internet recovery system.
    If you don't have that original reinstall USB thumb drive you can order one from Apple for a small charge. Call Apple and ask to speak to someone Specifically to order a Replacement USB system reinstall thumb drive for your model year. You will need the serial number of that Air. It is etched into the bottom of the case.
    Eric Ross wrote:
    You can't run Windows on your Macbook Air without having Mac OS X installed with Boot Camp.  So it should be an option to select the Mac OS X partition at startup when holding down the option key.  Take a look at this link, http://support.apple.com/kb/HT4818

  • Hello, I have a problem with my mac book pro after running the battery dead on a game.  The display has shrunk leaving two black margins on either side. What to do ?

    Hello, I have a problem with my mac book pro after running the battery dead on a game.  The display has shrunk leaving two black margins on either side. What to do ?

    Go to System Preferences>Displays and set the resolution to "Best for this computer" (or something to that effect).
    Clinton

  • I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...

    I have a problem with running an EXE file on win2000, the Lab View is 5.1 and I do not know if it is 16 bit...what should I do?

    Hi Arika,
    The drivers that you need to install to make your executable work depends on what your executable is doing. To get started, you need to have the LabVIEW Run-Time Engine installed on your target machine (the Win2000 machine you are planning to use) in order to run your executable. Next, you need to determine what drivers your executable uses, if any. For example, if you are using GPIB instrument control, you will need to install the NI-488 drivers on your target machine. If you are performing data acquisition, you will need to install NI-DAQ drivers. If you are doing image acquistion, you will need to install NI-IMAQ drivers.
    All these drivers are available for downloading on ni.com. To get the drivers, go to ht
    tp://www.ni.com/support , click on the link that takes you to Drivers and Updates (under Option 3), and click on the links to get to the driver(s) you need. For example, if you need the LabVIEW 5.1.1 Run-Time engine, click on the All Drivers and Updates by Application link on the main page (http://www.ni.com/softlib.nsf/). Then click on the LabVIEW link, Windows 2000, Run Time Engine, and then you will see the link to get to the page to download the LabVIEW 5.1.1 Run-Time Engine.
    I hope this information helps.
    Best Regards,
    Wilbur Shen
    National Instruments

Maybe you are looking for

  • Urgent:Transaction  not working.

    Hi all, I have developed a report program.The report has a selection screen.It displays the report in ALV grid using "REUSEALVGRID" function.The program runs successfully from ABAP editor.But when i created a transaction for the program and tried to

  • Link between code and code groups and inspection type

    Hi All, I want to know the link between code and Code Group for UD and inspection type? There is an option of choosing Usage selected set in SPRO "Seeting for inspection type".If i dont enter anything there,will it show all the code groups in the sys

  • Pr00 in pricing procedure determination

    dear sir can you guide me the significance of assigning pr00 in pricing procedure determination

  • FORTE with NT 4.0 and SQLSERVER 6.5

    I am trying to run a FORTE application on a platform running NT 4.0 and SQLSERVER 6.5 as the DBMS and am having troubles. On SQLSERVER there is a database called tempDB. This is suppose to be a database for use by SQLSERVER to store any temporary dat

  • DBChecck KO

    Hello Experts, when i verify on DB13, i find this errors on checkDB: Job started Step 001 started (program RSDBAJOB, variant &00000000000xx, user ID DDIC) Parameters: -u / -jid CHECK20110127060052 -c -f check BR0801I BRCONNECT 7.00 (42) BR0805I Start