Having trouble with browser compatibility

I am fairly new to web design and Dreamweaver. I have created a website for my father's business and it looks as it is supposed to in every browser except for IE. When I use Adobe BrowserLab to check compatibility, in IE 7 & 8 for windows all of my sidebar shifts down. In IE 6 for windows it is even worse, the main content shifts WAY down.
Can someone please help me with this? Is there some code I am missing to make it view correctly in IE for windows?
The site is www.claremontglassworks.com
Thank you.

IE6 has many, many bugs: double margins bug, the 3px gap bug and expanding box bug.
As a test, increase your #container width to 790 or 800px and see if that makes IE6 behave.
As for the other IE browsers, you have conditional comments in your page that adds 30px of top padding to your #sidebar1.  Try adjusting or deleting that.
<!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixRtHdr #sidebar1 { padding-top: 30px; }
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Having trouble with browser scrolling and master volume key

    I just got a Blackberry 9350 and I've run into some trouble. My master volume and mute key doesn't work at all. Scrolling up and down on some web pages doesn't work but works when not on the browser. I've tried messing with settings and turning the phone off and on. Any help would be appreciated!

    IE6 has many, many bugs: double margins bug, the 3px gap bug and expanding box bug.
    As a test, increase your #container width to 790 or 800px and see if that makes IE6 behave.
    As for the other IE browsers, you have conditional comments in your page that adds 30px of top padding to your #sidebar1.  Try adjusting or deleting that.
    <!--[if IE]>
    <style type="text/css">
    /* place css fixes for all versions of IE in this conditional comment */
    .twoColFixRtHdr #sidebar1 { padding-top: 30px; }
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • I am having trouble with the Canon Image browser ex.l

    i am having trouble with the canon image browser ex.After sevearl downloads i eventually got past the 80% mark.it is now downloaded.however as soon as I click on it it opens up and then a message comnes upm saying that there is a problem and windows is searching for the problem.it then closes the oprogramme down..Any help would be appreciated 

    I am having the same problem and have contacted Canon, they've answered me several times with things to try but nothing they've told me to try helps. It looks like they are going shrug, scratch their heads soon and  pass the buck to Microsoft or HP my comp make .
    I have a Windows 8.1 OS, 64 bit comp.

  • Having trouble with Flash Player in regards to youtube

    Hello,
    Recently I started having trouble with Flash Player in regards to using it with youtube. Sometimes all I see is a blank white screen and sometimes I do see the video with no surrounding youtube webpage or suggested videos etc. Nothing has changed on my computer as far as I know except the usual updates etc. I have tried uninstalling Flash Player and reinstalling with no luck. I even tried an older version. I am running windows XP and IE and have McAfee for my anti-virus. I am not the most computer savy person in the world and could sure use some help.
    Thanks,
    Ron

    Hitomi,
    Thanks for the links. I am pretty sure it is not a problem with Flash Player itself but something else that is causing this. I don't know how to do a "screen shot", but even if I did I don't know that it would do anygood to show that because the youtube video screen and surrounding webpage only show for a second and then it goes totally white.
    Pat,
    Here is what I found:
    Intel(R) 82915G/GV/910GL Express Chipset Family
    Driver Provider          Intel corporation
    Driver Date               6/8/2005
    Driver Version          6.14.10.4332
    Digital Signer               Microsoft Windows Hardware Compatability Publis
    Update:
    This morning after doing some further reading and research on the Internet I tried running youtube in the  "InPrivate Browsing" window and youtube worked fine. So thinking I should delete my Internet Browing History, Cache, and Cookies, based on what I read I went ahead and did that but it still doesn't want to work. I think I did the deletions correctly? As I mentioned above I am not very computer savvy but can get by on the basics. Where should I go from here based on this info?
    Thanks,
    Ron                

  • Having Trouble With E-mails That Involve Animation

    This is too weird. When I receive an e-mail that has animation in it it comes through freeze framed in Mail. It does not matter if it is in my .Mac account or Verizon account. Just for the heck of it I forwarded it to myself using the Verizon account and opened it in Safari. I also did the same thing with my .mac account. I opened it on the web. Bingo, I had animation. I am also having trouble with WMV's. Why can I not get any animation in Mail? Is there something I am doing wrong? any way to correct this?

    OK, from the sound of your post, you have a limited knowledge about email. Let me see if I can help. I would guess that you have a Windows machine that you have used in the past. Your email address must be a "pop" address. That means that your internet service provider has a server where your mail is sent. This is different than a web mail address, that is accessed remotely with a web browser, such as Internet Explorer, Firefox, or Safari. You must then be using an email program, such as Outlook Express, to go get the email onto your local machine. Any email program can do this. Open up the accounts tab in Outlook Express, and write down the settings. There will be one for the incoming server, and one for the outgoing server. Now, on your Mac, you can use the email program provided, such as Mac Mail, and put the settings in there. You can now send and receive to your Mac using your supplied email address. You can use another program such as Thunderbird to do this if you want. You don't have to use Mac Mail.
    Getting your old email off of the Windows computer is a bit harder, so hopefully you don't need to do that. But if you do, I can direct you on how to do that also.

  • I am having trouble with plug-ins.  How do I cure this?  The last time I believe I had to update my operating system.  My current operating sytstem is MAX OSx , Version 10.6.8

    I am having trouble with plug-ins being blocked.  I have an I-Mac, 2.4 Ghz processor, 2 GB memory, and using Safari as my browser.  My operating system is MAC OSX Version 10.6.8

    Any particular plugin or all of them? If Adobe Flash Player, try un-installing and then re-installing.
    Adobe Flash Uninstaller
    Adobe Flash Player

  • Having trouble with my signed applet(if it's properly signed that is)

    hi
    I'm having trouble with my supposedly signed applet. I'm trying to execute a specific program in this case trilian from my browser. i'm using firefox
    first my java code
    package applet;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class RunApplet extends JApplet {
        JButton jButton = new JButton();
        FlowLayout flowLayout1 = new FlowLayout();
        public RunApplet() {
            try {
                init();
            } catch (Exception ex) {
                ex.printStackTrace();
        private void init() throws Exception {
            try {
                this.getContentPane().setLayout(flowLayout1);
                this.setSize(new Dimension(100, 200));
                jButton.setText("Trillian");
                jButton.addActionListener(new RunApplet_jButton_actionAdapter(this,
                        "\"C:\\Program Files\\Trillian\\trillian.exe\""));
                this.getContentPane().add(jButton, null);
            } catch (Exception e) {
                e.printStackTrace();
    class RunApplet_jButton_actionAdapter implements ActionListener {
        private RunApplet adaptee;
        private String programPath;
        RunApplet_jButton_actionAdapter(RunApplet adaptee, String programPath) {
            this.adaptee = adaptee;
            this.programPath = programPath;
        public void actionPerformed(ActionEvent e) {
            try {
                Runtime.getRuntime().exec(this.programPath);
            } catch (IOException ex) {
    }And my applet code
    <html>
    <body>
    <!--"CONVERTED_APPLET"-->
    <!-- HTML CONVERTER -->
    <object
        classid = "clsid:CAFEEFAC-0015-0000-0005-ABCDEFFEDCBA"
        codebase = "http://java.sun.com/update/1.5.0/jinstall-1_5_0_05-windows-i586.cab#Version=5,0,50,5"
        >
        <PARAM NAME = CODE VALUE = "applet.RunApplet.class" >
        <PARAM NAME = ARCHIVE VALUE = "myfile.jar" >
        <param name = "type" value = "application/x-java-applet;jpi-version=1.5.0_05">
        <param name = "scriptable" value = "false">
        <comment>
         <embed
                type = "application/x-java-applet;jpi-version=1.5.0_05" \
                CODE = "applet.RunApplet.class" \
                ARCHIVE = "myfile.jar"
             scriptable = false
             pluginspage = "http://java.sun.com/products/plugin/index.html#download">
             <noembed>
                </noembed>
         </embed>
        </comment>
    </object>
    <!--
    <applet CODE = "applet.RunApplet.class" ARCHIVE = "myfile.jar">
    </applet>
    -->
    <!--"END_CONVERTED_APPLET"-->
    </body>
    </html>Creating my key:
    keytool -genkey -alias sitekey -keystore "C:\Program Files\Java\jdk1.5.0_05\jre\lib\security\cacerts"Now the process of creating the jar file and signing it:
    1. jar cf myfile.jar *.class
    2. jarsigner -keystore "C:\Program Files\Java\
    jdk1.5.0_05\jre\lib\security\cacerts" myfile.jar sitekeyNow this is the way i've been using then and the first time i get the "do you want to trust" screen but still i get a security exception.
    Exception in thread "AWT-EventQueue-10" java.security.AccessControlException: access denied (java.io.FilePermission <<ALL FILES>> execute)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkExec(Unknown Source)
         at java.lang.ProcessBuilder.start(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at java.lang.Runtime.exec(Unknown Source)
         at applet.RunApplet_jButton_actionAdapter.actionPerformed(RunApplet.java:73)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)Is there anybody who have an idea what can be wrong?
    regards
    thallish

    ok i solved i myself. i assigned a different and thereby correct keystore and now it works like it should
    regards
    thallish

  • Having trouble with e-mail

    I recently bought a macbook for college, and I am having trouble with my e-mail. I have an account on outlook express that works well, and i just wanted to know if there is any way that I could access it from this laptop.
    I am going to college and they send me important stuff, so I need that address. If it is not possible then what kind of e-mail address should i make (yahoo, etc.)

    OK, from the sound of your post, you have a limited knowledge about email. Let me see if I can help. I would guess that you have a Windows machine that you have used in the past. Your email address must be a "pop" address. That means that your internet service provider has a server where your mail is sent. This is different than a web mail address, that is accessed remotely with a web browser, such as Internet Explorer, Firefox, or Safari. You must then be using an email program, such as Outlook Express, to go get the email onto your local machine. Any email program can do this. Open up the accounts tab in Outlook Express, and write down the settings. There will be one for the incoming server, and one for the outgoing server. Now, on your Mac, you can use the email program provided, such as Mac Mail, and put the settings in there. You can now send and receive to your Mac using your supplied email address. You can use another program such as Thunderbird to do this if you want. You don't have to use Mac Mail.
    Getting your old email off of the Windows computer is a bit harder, so hopefully you don't need to do that. But if you do, I can direct you on how to do that also.

  • I have 64-bit Vista on an HP laptop, and am having trouble with P4

    I have 64-bit Vista on an HP laptop, and am having trouble with P4. When I go to the "Compatibility" tab in for the P4 .exe file, 32-bit Vista does not show up as a compatibility option. The latest version shown is XP with SP2. Am I missing something? Is there a patch or download that updates P4?(The problem I'm having is stuttering and stopping in the imported avi2 files I have downloaded from my Panasonic digital camcorder and converted from avi to avi2 using DVDate. Also, I get stuttering with digital photos - jpg files - that I want to insert in the movie with added narration.)

    A.T. Romano
    It gets a little complicated. This is a simplification, but I hope this
    helps to visualize what's happening.
    The 32 bit and 64 bit environments are separated from each other.
    There are separate program files directories, separate shared dll library
    directories, and even separate registry entries. You can't mix 32 and
    64 bit modules, and some applications, like Internet Explorer, install
    both a 32 bit and a 64 bit version on the same computer. (IE does that
    so it can process web pages that use 32 bit executable controls).
    Vista 64 has 32 bit emulation built-in using a subsystem called Windows
    on Windows 64 or WOW64 for short. WOW64 intercepts 32 bit
    application calls to the operating system and handles the 32 to 64 bit
    conversions and the redirection of the file and registry locations.
    The program files themselves contain flags that indicate whether they
    are 32 bit and whether the file uses the 64 bit version of the file
    structure.
    If the program is marked 32 bit, it will run in 32 bit using WOW64.
    Programs are generally installed by an installer program which places
    the application files in the proper locations and writes the registry
    entries and any other setup tasks that are needed. To install a 64
    bit program, a 64 bit installer is needed. For 32 bit installers, the files
    and registry entries are redirected to the 32 bit locations.

  • Im having trouble with FF & Youtube; it wont play videoes

    i'm having trouble with FF; Youtube videos dont play, just a black screen ? ; they play ok on Google Chrome; BBC news videos play ok with FF. I have upgraded Adobe Flash no look, reverted to previous, no luck. I'm running Windows 7, on a DELL Inspiron with terraflops of memory and no system bugs, clean as a whistle.
    FF is my default browser. The mouse-over previews play? Sometime for fractions of second videos try to play, then revert to black screen.

    http://support.apple.com/kb/TS1538
    There have been some problems accessing pages on the Apple web site.  If the hyperlink gives you a "We're sorry" message, try again.

  • I am having trouble with my speakers not working while online in particular on windows.My audio works when playing audio files

    I am having trouble with my speakers not working while online particular on facebook. My audio works when playing audio files.

    Hi,
    Did it happen all the time or sometime?
    Please check online browser status:
    Click Volume icon in the taskbar, click Mixer link button as below:
    If it's fine, follow this guide to run troubleshooter to detect and fix the issue:
    Tips for fixing common sound problems
    http://windows.microsoft.com/en-in/windows/tips-fixing-common-sound-problems#tips-fixing-common-sound-problems=windows-7
    Meanwhile, this similar thread also could be referred:
    https://social.technet.microsoft.com/forums/ie/en-US/a4a1cfe5-93a5-4c0b-9bf6-f7db0304f2ba/no-sound-on-youtube-or-any-other-webpage
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • I am having trouble with comcast e mail using safari

    I am having trouble with xfinity e mail using browser, SAFARI

    I too had this issue. I was recently an employee and user of Comcast and they do not support Safari. Some functions work, many don't. I used Firefox and had no issues. I also set up my mail using MAC MAIL and didn't have any issues with that.

  • I'm having trouble with certain buttons on the Ebay pages.

    I'm having trouble with certain buttons on the EBay pages. Like enlarge, other pictures,add to my watch list, etc. this happened after I upgraded to 8.0. I have tried to upgrade java but the java console will not work ?? tried all this in my other browser and all works fine. What do I do? Thanks

    If it happens again then try to reload the website or clear the cache and the cookies from that website.
    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    *http://support.mozilla.com/kb/Deleting+cookies
    *http://support.mozilla.com/kb/How+to+clear+the+cache

  • Where can I find Firefox 3.6 to download since I am having trouble with Firefox 4.

    I would like to install Firefox 3.6, but I am having trouble finding a place where I can download it. I previously upgraded to Firefox 4, but am having trouble with it and would like to go back to 3.6. Where can I find a site that will let me download 3.6?

    What problems are you having with Firefox 4?
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data.
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • Having trouble with internet connections using my Apple G5. Updates turn out to be incompatible with my system. What should I do short of trashing the wonderful computer and spending cash I don't have on a new iMac?

    Having trouble with internet connections using my Apple G5 OSX 10.4.11. Attempts to upgrade FireFox or Safari results in being incompatible with with this system. Tried to locate earlier versions to replace upgraded incompatible software only to find that problems have worsened with crashing results. What should I do short of trashing this wonderful G5 and purchasing a new iMac which I really can't afford?
    Chuck's Dilema

    Hi Chuck,
    TenFourFox is the most up to date browser for our PPCs, they even have G4 & G5 optimized versions...
    http://www.floodgap.com/software/tenfourfox/
    I'd avoid vesrion 24 though, as it no longer supports plug-ins like Flash.
    SeaMonkey seems pretty fast also, with many options...
    http://www.seamonkey-project.org/
    http://www.seamonkey-project.org/releases/
    Might also look into iCab & OmniWeb versions.
    Also...
    The last really supported Flash for PPC was 10.1.102.64, but if it's for like Facebook or such, people have been fooling FB to think they have a leter version installed.
    Texas Mac Man's Flash hack/post...
    https://discussions.apple.com/thread/3599648?tstart=0
    Flash player 11.1 hack on PowerPC - https://discussions.apple.com/message/16990862
    Might be later ones around also... saw 11.3 I think.
    (If you are running a PPC Mac with Flash Player 10.1.102.64 and are having problems with watching videos on FaceBook or other sites, contributor Texas Mac Man suggests the following solution which fools the site into thinking that you are running the latest version:)
    Download this http://www.steelbin.com/FPforFBPPC.zip to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.
    See in each Browser which version of Flash it thinks it has...
    http://kb2.adobe.com/cps/155/tn_15507.html

Maybe you are looking for

  • International characters apear with ? instead of ó or á or é

    After upgrade from 10.4.7 to 10.4.8 my email in yahoo apear with ? instead of the international characters. What i can do? I get this y mis correr�as con alguien que m�s all� instead of y mis correrías con alguien que más allá Thanks a lot. Jm

  • How to read chinese in N97 Mini?

    I just bought it in the UK How can it read chinese in texting and web browsing? Any software can be installed to solve?

  • Cookies appearing even when set to "Never"

    Hi, Ever since the new Safari update, I constantly get cookies from Google, even though I have NEVER set in preferences under "accept cookies". This happens many times during the day, and I am constantly deleting it, but soon after it's there again.

  • How do I format a date string in ISO 8601 format?

    Post Author: Perth CA Forum: Formula I am using a SaaS application, and uploading Crystal XI report templates to run using the application's reporting page. My custom date fields are stored using the ISO date format, and are made available as text st

  • How do i quickly retrieve my email?

    with ie there was a button to click to check your email. how do i find or set one up so i can easily check my email?