How do I fix my homepage for Internet Explorer use, when using dreamweaver?

Hi,
I have recently created my first two webpages, and they looked like they were working when I was using Firefox. But when using Internet Explorer one of the pages drop the text down to an area of the screen where it's impossible to read it. Can someone please help me out? I am using Dreamweaver and I'm sure there is a basic problem I've created for myself, but I can't figure out what it is! This is the webpage I'm having problems with: www.haanshuus.no.
Thanks a lot for any help in resolving this problem!

I don't think this has anything to do with the conditional comments.
The problem is with your layout approach.  Trying to precisely fit content over a very large background image never works as planned.  If you increase text size in any browser (Zoom text only, Ctrl+++), your black content spills out of the gray box into the black region below.  Black text on black background becomes invisible.    Your approach works in Print design but fails on the web because web pages need to be flexible.
Remove your Body background image and notice how your page flows.  A different approach would be to slice your background into sections to create a flexible gray box.
Example here:
http://alt-web.com/DEMOS/Image-slices-in-a-CSS-based-layout.shtml
Nancy O.
Alt-Web Design & Publishing
Web | Graphics |  Print | Media Specialists
www.alt-web.com/
www.twitter.com/altweb

Similar Messages

  • How do I fix Mozilla Firefox if Internet Explorer pops up, saying my PC is infected?

    When I click on Mozilla Firefox (Safe Mode), Internet Explorer Emergency Mode comes up saying that my PC is infected with malicious software and browse couldn't be launched.

    Have you run a full scan with your anti-virus program?

  • How do I transfer my Favorites from Internet Explorer 9 when I switch over to Firefox ?

    My Internet Explorer 9 has been NOT allowing me to send out new emails. No one seems to know how to fix it. So I am thinking of switching over to Firefox. However I have 50 +Favorites stored with IE that I do not want to loose the addresses for. There must be a way to transfer them over to Firefox. How do I do that?

    Hi OsHyde,
    You should take a look at the [[Importing bookmarks and other data from other browsers]] Knowledge Base article. There is a lot of information in there that should give you all the help you need to get your bookmarks imported successfully.
    Hopefully this helps!

  • How do i set the homepage for new tabs? when i open tabs i would like it to go to google but i cannot find out how to do this.

    when i open a new tab in firefox, it takes to me to a 'fast browser search' page and i would like to set it to open google.co.uk instead :(

    It would seem if your choose "Show my windows and tabs from last time" '''''and''''',
    *when you last closed Firefox, you had no web site open (just a blank tab), that it would open just that blank tab
    *when you last closed Firefox, you had one or more tabs/web site open, that would allow you to "Restore Previous Session"
    #Have you tried that?
    #If so, what is happening in each circumstance when you reopen Firefox?
    '''Restore Previous Session'''<br />
    Open tabs are automatically saved when closing Firefox beginning in Firefox 4. To open your last session, after Firefox starts, click History > Restore Previous Session. For this to work
    #You must be remembering history (Options > Privacy > Remember my browsing history).
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    #You must not be using Private Browsing or permanent Private Browsing
    #*See [https://support.mozilla.com/en-US/kb/Private%20Browsing Private Browsing]
    #You must not use Clear Recent History or Clear history when Firefox closes
    #*See [https://support.mozilla.com/en-US/kb/Clear%20Recent%20History Clear Recent History]
    #*See [https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel Options window-Privacy panel]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]

  • How to create a java plugin for Internet explorer

    Hi All,
    I have recently started working on java,i need to a create a plugin which can launch any file type(say any file which draws a cube with some extension .abc).Where should i start my work from.What do i need to do first.Please help me out coz it is very important for my project work.
    Any suggestions would be much appreciated.
    Regards,
    Deepti.

    Hi Viravan,
    I signed my applet as u said but for some reason the browser is not recognising the cert.The applet is reading a wrl file from my local C drive.I'm creating a plugin to show this applet in the browser window.this is all i have to do.i guess u will have an idea by looking at this program of mine.
    Curves.wrl is the file which i'm reading from the Cdrive.
    i even changed my policy file but in vain.
    JAVA CODE
    import java.awt.BorderLayout;
    import com.sun.j3d.utils.applet.MainFrame;
    import com.sun.j3d.utils.universe.*;
    import javax.media.j3d.*;
    import javax.vecmath.*;
    import javax.vecmath.Point3d;
    import com.sun.j3d.loaders.Scene;
    import java.awt.GraphicsConfiguration;
    import java.io.*;
    import com.sun.j3d.loaders.vrml97.VrmlLoader;
    import com.sun.j3d.loaders.Scene;
    import com.sun.j3d.utils.behaviors.mouse.*;
    import com.sun.j3d.utils.geometry.ColorCube;
    import java.lang.*;
    import java.applet.*;
    import java.net.URL;
         public class Vrml2 extends Applet {
         private SimpleUniverse u=null;
         public BranchGroup createSceneGraph() {
         BranchGroup objRoot = new BranchGroup();
         //TransformGroup objScale = new TransformGroup();
         //Transform3D t3d = new Transform3D();
         //t3d.setScale(0.3);
         //objScale.setTransform(t3d);
         //objRoot.addChild(objScale);
         BoundingSphere bounds = new BoundingSphere(new Point3d(0.0,0.0,0.0),      100.0);
         Color3f bgColor = new Color3f(1.0f,1.0f,1.0f);
         Background bg = new Background(bgColor);
         bg.setApplicationBounds(bounds);
         objRoot.addChild(bg);
         Color3f light1Color = new Color3f(1.0f, 1.0f, 0.9f);
         Vector3f light1Direction = new Vector3f(4.0f, -7.0f, -12.0f);
         DirectionalLight light1 = new DirectionalLight(light1Color,      light1Direction);
         light1.setInfluencingBounds(bounds);
         objRoot.addChild(light1);
         TransformGroup objTrans = new TransformGroup();
         objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
         objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
         objTrans.setCapability(ColoringAttributes.ALLOW_COLOR_READ);     objTrans.setCapability(ColoringAttributes.ALLOW_COLOR_WRITE);     objTrans.setCapability(Material.ALLOW_COMPONENT_READ);     
         objTrans.setCapability(Material.ALLOW_COMPONENT_WRITE);
         objTrans.setCapability(TransformGroup.ENABLE_PICK_REPORTING);
         //objScale.addChild(objTrans);
         objRoot.addChild(objTrans);
         VrmlLoader loader = new VrmlLoader();
         Scene s = null;
         try {
              s = loader.load("c:/documents and      settings/dk27/morph/curves.wrl");
         catch (SecurityException e) {
              System.out.println(" caught security exception by deepti");
              System.out.println(e);
         catch (Exception e) {
              System.out.println("Exception caught");
              System.err.println(e);
              System.exit(1);
         //objTrans.addChild(new ColorCube(0.2));
         objTrans.addChild(s.getSceneGroup());
         Transform3D yAxis = new Transform3D();
         Transform3D tr3d=new Transform3D();
         tr3d.lookAt(new Point3d(13.00,-2.5,11.83),new Point3d      (20.0,0.0,50.0),new Vector3d(0.0,1.0,0.0));
         tr3d.invert();          
         //to rotate the cone left button
         MouseRotate behavior = new MouseRotate();
         behavior.setTransformGroup(objTrans);
         objTrans.addChild(behavior);
         behavior.setSchedulingBounds(bounds);
         //to zoom the cone middle button
         MouseZoom behavior1=new MouseZoom();
         behavior1.setTransformGroup(objTrans);
         objTrans.addChild(behavior1);
         behavior1.setSchedulingBounds(bounds);
         //to translate the cone right button
         MouseTranslate behavior2=new MouseTranslate();
         behavior2.setTransformGroup(objTrans);
         objTrans.addChild(behavior2);
         behavior2.setSchedulingBounds(bounds);
         objRoot.compile();
         return objRoot;
         public Vrml2() {
         public void init(){
         setLayout(new BorderLayout());
         GraphicsConfiguration config=SimpleUniverse.getPreferredConfiguration     ();
         Canvas3D c = new Canvas3D(config);
         add("Center", c);
         BranchGroup scene = createSceneGraph();
         SimpleUniverse u = new SimpleUniverse(c);
         u.getViewingPlatform().setNominalViewingTransform();
         u.addBranchGraph(scene);
         public void destroy(){
         u.removeAllLocales();
         public static void main(String[] args) {
         new MainFrame(new Vrml2(),600,800);
    APPLET CODE:
    <HTML>
    <HEAD>
    <TITLE>Morphing Applet</TITLE>
    </HEAD>
    <BODY>
    <APPLET CODE = "Vrml2" CODEBASE = "." ARCHIVE = "Vrml2.jar" WIDTH = 202 HEIGHT = 177>
    </APPLET>
    </BODY>
    </HTML>
    the errors that it is displaying are
    java.security.cert.CertificateException: Unable to verify the certificate with root CA
         at sun.plugin.security.TrustDecider.isAllPermissionGranted(Unknown Source)
         at sun.plugin.security.PluginClassLoader.getPermissions(Unknown Source)
         at java.security.SecureClassLoader.getProtectionDomain(SecureClassLoader.java:162)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:111)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:248)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:128)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
         at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:108)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
         at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:373)
         at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
         at sun.applet.AppletPanel.run(AppletPanel.java:293)
         at java.lang.Thread.run(Thread.java:484)
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission modifyThreadGroup)
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:272)
         at java.security.AccessController.checkPermission(AccessController.java:399)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:545)
         at sun.applet.AppletSecurity.checkAccess(AppletSecurity.java:139)
         at java.lang.ThreadGroup.checkAccess(ThreadGroup.java:279)
         at java.lang.ThreadGroup.getParent(ThreadGroup.java:140)
         at javax.media.j3d.MasterControl$23.run(MasterControl.java:3077)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.media.j3d.MasterControl.<clinit>(MasterControl.java:3070)
         at javax.media.j3d.VirtualUniverse.<clinit>(VirtualUniverse.java:206)
         at Vrml4.init(Vrml4.java:110)
         at sun.applet.AppletPanel.run(AppletPanel.java:344)
         at java.lang.Thread.run(Thread.java:484)
    Exception:java.io.FileNotFoundException: D:\JDK13~1.1\lib\flavormap.properties (The system cannot find the file specified) while loading default flavormap.properties file URL:file:D:\JDK13~1.1\lib\flavormap.properties

  • How can I know if the version of Flash Player installed is the right version for Internet Explorer?

    Hello,
    I have Windows 7 Starter with Internet Explorer 8 and Adobe Flash Player 10,1,85,3.
    I am experiencing problems with one particular web site which uses Flash technology to operate its web site., which is:
    gadget-detective.moonfruit.com.
    It has been suggested to me that I check I have installed the correct Flash Player for the web browser
    I am using which is Internet Explorer 8, that in particular I should check I have not installed in error a Flash Player
    for "other browsers". I do not know how to check if the version of Flash Player I have installed is the correct one for
    Internet Explorer, but, when I go to the Adobe web site at:
    http://www.adobe.com/software/flash/about/
    it states that Flash Player is successfully installed.
    Here are the problems I have been encountering with accessing the above-mentioned "gadget-detective" web site,
    where I have had to use different URLs to attempt to get access to the technical advice areas on their web site:
    1)A Welcome page with a link to the Free Technical Advice page located someway down the centre of the Welcome page,
    but still with none of the previous links along the left side:
    http://www.gadget-detective.moonfruit.com/#/free-tech-advice/4515074362
    2)A Welcome page with no links at the left side and in particular no link at all to the Free Technical Advice page:
    http://www.gadgetdetective.com/
    3)A completely black page:
    http://gadget-detective.moonfruit.com/#/free-tech-advice/4537230823
    How can I be certain that I have the correct version of Flash Player for my web browser Internet Explorer 8?
    Regards.

    Hello  ʇɐb ɹəuəllıʍ ,
    Thanks for your reply. I would appreciate it if you could let me know what the Flash Player setting
    called "Hardware Acceleration" does, before I try disabling it.
    Regards.

  • Can anyone recommend a programmer that can fix iWeb for Internet Explorer?

    Can anyone recommend a programmer that can fix iWeb for Internet Explorer? I had one experienced source from GetaFreelancer.com who did a 17 page fix for $25. He would have done commented code for $40 so I could do the fixes myself afterward but he is not available right now. Guru.com yielded no comparable sources. Elance has a $50 minimum. All the other bids were in the hundreds of dollars without the commented code.

    The image on the right of your index page needs pulling down a bit, it looks messy covering the top banner.
    Secondly, you've changed quite a lot on your page so this makes life harder for everyone. For example, now at the bottom of the page in fireFox I see 'IP' on the line below the rest of the details, but because you changed things I now don't know whether that's because of my screen resolution or your coding. Is it still on one line for you?
    The problem with your columns may partly be based on the fact that you have a variety of span classes effectively achieving the same thing, and there are lots of unnecessary bits of code. How much of this is iWeb and how much is you I don't know. You've got an li class, a paragraph class, a written-out span class and some kind of specified bullet class all for one sentence. You only need one, maximum two of those things. Even if it's not conflicting and that's not the reason why it looks messed up, you'd do better to strip the code of all the unnecessary rubbish.
    To do this with help I recommend someone who is familiar with iWeb and has access to it in front of them. A professional programmer won't be able to help you, because they can't really tell which bits are generated by iWeb and which parts you can actually change.
    I recommend starting with a blank page and creating your columns and text without any styling other than bullets. Check it in both IE and FF. Then slowly begin to add your styling back in until you see if there's a problem. Finally, put the text on a (new) page which has your full website styling and see if there's a conflict between your page layout code and your page text code.

  • In help, it said, for internet explorer users how to remove it

    when i some news in yahoo firefox said error and said start a new season.
    and still can't open it.
    in menu bar help, for internet explorer users how to remove it. thanks.

    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * [[Firefox crashes]]
    * http://kb.mozillazine.org/Browser_will_not_start_up

  • I disabled my iphone 5. how do you fix it. i for got my passsword.

    i disabled my iphone 5. how do you fix it. i for got my passsword.

    If you have got the error on your iPhone saying 'iPhone is disabled', put your device in DFU Mode and re-boot, or if it is still not working, then restore in iTunes.
    Good Luck

  • HT2305 HOW DO I FIX ERROR 43  FOR MY iPOD CLASSIC ?

    HOW DO I FIX ERROR 43  FOR MY iPOD CLASSIC ?

    Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if the device is manually disconnected during the restore process. This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.

  • How do you fix a 0x000007b for In Design?

    How do you fix a 0x000007b for In Design?

    From reading some forum posts, it may have to do with the Microsoft C libraries...at least if you are running Windows. The following thread has to do with Illustrator, but it may be also pertinent to ID:
    Re: Unable to start Illustrator CS6 64-bit on Windows 7

  • How do I fix error (-42110) for itunes?

    How do I fix error (-42110) for itunes?

    Try this user tip:
    https://discussions.apple.com/docs/DOC-4831
    Hope that helps. If not, you may find other suggestions if you look to the right under "More Like This" or search the forums for "42110"
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • I deleted all downloaded songs from my iphone but under Settings/About it still shows songs on my phone. How do I fix this?  I need to use that storage space for other things.

    I deleted all downloaded songs from my iPhone but under
    Settings/About it still shows songs on my phone.
    How do I fix this?  I need to use that storage space for other things.

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • ADF 11g support for Internet Explorer 8 plus x

    hi
    Given the current situation for ADF 10g, see forum thread "ADF 10g support for Internet Explorer 8" ...
    at ADF 10g support for Internet Explorer 8
    ... I was wondering about the future browser support in ADF 11g.
    (Specifically about IE8 the knownissues.html document for JDeveloper and ADF 11g (11.1.1.1.0) currently says "Internet Explorer 8 is neither supported nor certified. If you must use IE8, set the compatibility view settings in your IE8 browser to ALL. In IE8, go to the Tools menu -> Compatibility View Settings and check the last checkbox "Display All Websites In Compatibility View"." and "... IE8 support should be in the upcoming first patch set. ..." Re: PanelStretchLayout on IE8.)
    question
    (q1) What is the life expectancy of applications built with ADF (Faces) 11g in regard to their future browser support?
    many thanks
    Jan Vervecken
    edit 20091001 : fixed link to knownissues.html

    Thanks for your reply Shay.
    We plan to officially support IE8 with the next patch release to JDeveloper 11g - currently planned for later this year.That matches what I wrote in my initial post in this forum thread about IE8 support.
    We usually only certify browsers after they officially go production.That does not really answer my question (q1) in this forum thread.
    It is more like, how can I assess that Oracle will support any successor(s) of IE8 or successor(s) of any currently supported browsers for ADF 11g applications in the future? How long will Oracle support "commonly used browsers" for an ADF 11g application I build today, so how long will I be able to use that application?
    How do I answer such questions for ADF 11g applications that should be deployed on the internet (where, as some extranet environments, you typically have not that much (or no) control over which browsers your users use ... although some would like to argue with that, see forum thread "ADF Faces RC browser support and browser market share")?
    (By the way, do you have any feedback for the forum thread "ADF 10g support for Internet Explorer 8"?)
    regards
    Jan

  • Acrobat PDF reader for Internet Explorer may be unloading/unabling custom plugin

    Hi,
    My question is basically to understand what is happening in this situation so that I can find where is the problem and how to solve it.
    We have used Acrobat 6.0 SDK to develop our custom plugin. This plugin is basically wrapper to few basic tools  (note, stamp, text ) etc.. provided by Acrobat 6.0 SDK. We have also developed PDFViewer.dll to view PDF document within Internet Explorer. So when user load document within our website this PDFViewer loaded with the custom plugin and user can use those tools.
    We are installing this plugin under <Acrobat X>/Plug_ins/<Company Name>/MyPlugin.API.
    In our web site we are giving list of documents and when user click on a document it will load the PDFViewer and custom plugin. We are loading Acrobat.exe in advance so that we can load quickly.  Now the problem happens when user open any other PDF in different tab or instance of Internet explorer. ?How?
    Consider in a internet explorer user logged in our web site and then he/she can see let's say 10 documents. 1.pdf, 2.pdf, 3.pdf, etc...
    Now when user select document 1.pdf we are loading that PDF in the IE within our PDFViewer with custom plugin. (Here I have seen that behind the scene Acrobat.exe is loaded in the processed using task manager)/  If at this time if user opens another instance of Internet explorer or another tab and open a PDF document it opens PDF in the standard Adobe Reader PDF viewer for Internet Explorer resides at (C:\Program Files\Common Files\Adobe\Acrobat\ActiveX).
    If at this time user goes back to our site and tried to work on 1.pdf our custom plugin works fine BUT if user opens any other document (let's say 2.pdf) the plug in stops working basically looks like it is not loaded.
    This issue only happens if user opens a document in another internet tab or explorer instance and open PDF which resulted in to open Acrobat Activex for internet explorer. If user opens a PDF document out side of internet explorer it is not creating any problem because at that time ActiveX does not loaded.
    So my guess is something is going on when ActiveX for PDF is get loaded into Internet Explorer.
    I want to know more what is happening and why it is happening. Due to this behavior our web site users can't use any other web site which opens PDF documents because then they have to log off and log back in our web site.
    Please we need immediate help.
    I am open to provide more details with screen captures.
    Thanks,
    Twinkle

    Hi,
    Thanks.
    So I want to make sure this is because with Acrobat 9 - the new way to deal with PDF's?  Because as per my knowledge it was working fine with Acrobat 8.
    Moreover, if I am understanding correctly and I have tested too, the order is important here, right? If I will load PDF in IE first and then I will work on my web site it is not creating problem but if I will launch my web site first and then open PDF within IE in different tab it is creating problem because they are using same interface and when AcroPDF instantiating overriding and failed to load plug_in
    Here I have seen that both Acrobat.exe and AcroPDF.dll is using same Acrobat.dll pointing to same memory addresses and that's why problem is happening.
    IT would be great if you can provide any other way to "hook" adobe because the bottom line I have to use AcroExch.App from SDK.
    One last question, I have seen that if I am opening a PDF in Internet Explorer in a different tab (not in my web app) while pressing SHIFT key and the move to my web site and load different document it is working fine, so the question is what different is happening when we open PDF in IE with pressing SHIFT key and without pressing SHIFT key. IS AcroPDF.dll behaves differently while opening PDF with SHIFT key pressed?
    Thanks for all your help.
    Twinkle    

Maybe you are looking for

  • How do I make a utube video full-screen in iweb?

    Hello, Is there a way to make a utube video that is on my iweb-built website, full screen?  Everything about the videos I have imported from utube works fine, except when I click on the full-screen icon...nothing happens. View the videos (2) here: ht

  • Photoshop Album Edition Découverte 3.2

    Bonjour, Dans mon " Adobe Photoshop Album Edition Découverte 3.2 " je voudrais créer des collections pour classer mes Photos. Dans les menus déroulants je trouve " créer une collection " mais rien ne se passe sinon dans l'extension une zone bleue et

  • Default page format to A4

    Hi, I want to invoke the Pagesetup dialogbox with default A4 paper.Furher, is there any method that will help me retrieve the left,top,right and bottom margins that a user has selected from he page setup dialog box.... Plaese help me ASAP Thnx

  • PROTOCOL.MSGID_EXISTING_INBOUND: Message already exists in called system

    Hello all, in our receiver system we get follow error: PROTOCOL.MSGID_EXISTING_INBOUND: Message already exists in called system The message is in status: message already processed. But sure we sent the message only once and the message aren't process

  • ANNC: Free Update available for Pop Menu Magic

    This update fixes CSS issues in IE7. If you purchased PMM today (24-Oct-06) you already have an updated version. http://www.projectseven.com/support/updatepages/pmm103.htm Regards, The PVII Team http://www.projectseven.com Extending Dreamweaver - Nav