Menu buttons briefly turn white when hovering

When I hover over a menu button it turns white in IE and transparent in FF for about 2 seconds then displays the correct hover image. This happens the first time you hover, then it behaves normally after that.
Take a look here http://www.preferreddigitalprints.com/
I think I have something messed up in the CSS but can figure out what it is. I'm hoping someone has seen this before and would be kind enough to point me in the right direction.
Here's my CSS:
@charset "UTF-8";
/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
LAYOUT INFORMATION: describes box model, positioning, z-order
/* the outer table */
table#menu img {float:left; width: 39px;}
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
cursor: default;
width: auto;
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
z-index: 1000;
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
position: relative;
text-align: left;
cursor: pointer;
float: left;
width: auto;
ul.MenuBarHorizontal li #home {width: 132px; margin-left: -5px;}
ul.MenuBarHorizontal li #services {width: 155px;}
ul.MenuBarHorizontal li #order {width: 176px; }
ul.MenuBarHorizontal li #webaccess {width: 174px;}
ul.MenuBarHorizontal li #contact {width: 160px; margin-right:-5px;}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
z-index: 1020;
cursor: default;
width: 13em;
position: absolute;
left: -1000em;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
left: auto;
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
width: 13em;
ul.MenuBarHorizontal ul li a
{ background-color: #1a542c; color:#FFFFFF; padding: 6px; }
ul.MenuBarHorizontal ul li a:hover
{ background-color: #73152e; color:#FFFFFF; padding: 6px;}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
position: absolute;
margin: 0% 0 0 100%;
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
left: auto;
top: 0;
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{ font-family:Arial, Helvetica, sans-serif; font-size: 12px;}
/* Menu items */
ul.MenuBarHorizontal a
display: block;
cursor: pointer;
height: 32px;
text-decoration: none; }
ul.MenuBarHorizontal a#home { background-image: url(../BTNHomeUP.png);}
ul.MenuBarHorizontal a#services { background-image: url(../BTNServicesUP.png);}
ul.MenuBarHorizontal a#order { background-image: url(../BTNOrderUP.png);}
ul.MenuBarHorizontal a#webaccess { background-image: url(../BTNWebAccessUP.png);}
ul.MenuBarHorizontal a#contact { background-image: url(../BTNContactUsUP.png);}
/* Menu items that have mouse over */
ul.MenuBarHorizontal a#home:hover { background-image: url(../BTNHomeOVER.png);}
ul.MenuBarHorizontal a#services:hover { background-image: url(../BTNServicesOVER.png);}
ul.MenuBarHorizontal a#order:hover { background-image: url(../BTNOrderOVER.png);}
ul.MenuBarHorizontal a#webaccess:hover { background-image: url(../BTNWebAccessOVER.png);}
ul.MenuBarHorizontal a#contact:hover { background-image: url(../BTNContactUsOVER.png);}
/* ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus */
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
background-color: #33C;
color: #FFF;
SUBMENU INDICATION: styles if there is a submenu under a given menu item
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
background-image: url(SpryMenuBarDown.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
background-image: url(SpryMenuBarRight.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
background-image: url(SpryMenuBarDownHover.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
background-image: url(SpryMenuBarRightHover.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
BROWSER HACKS: the hacks below should not be changed unless you are an expert
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
position: absolute;
z-index: 1010;
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
ul.MenuBarHorizontal li.MenuBarItemIE
display: inline;
f\loat: left;
background: #FFF;

Putting your page through the html validator bought up a few errors
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.preferreddigitalprints.com%2F
The most important error is that the page isn't using a doctype.  This could account for the bugginess of the page.  A page without a doctype will render CSS in quirks mode and not display the page as intended in some browsers.
Please insert a doctype at the top of the document, then put the page through the validator again to see what errors remain, fix those, and hopefully the page will load OK.  I didn't look at the navbar images, but make sure that they are optimized for the web, because that can also cause a slow down on loading them.
I recommend using the transitional doctype.
DOCTYPES:
Reference: 
http://www.alistapart.com/articles/doctype/
http://htmlhelp.com/tools/validator/doctype.html:

Similar Messages

  • Buttons have dark strips when hovering

    Hi,
    Here is the website: http://hbr2.pooledesignstudio.com
    The background of the buttons is very dark when hovered on. I would like them to change uniformly, say white text and medium purple.
    I'm changing everything about this website but the content and am working on the index page first.
    Thank you for your help.
    Kathleen

    Hi B.
    I'm pretty comfortable, and sometimes have trouble finding the right class/id/subclass.
    Thanks for your help.
    Kathleen Poole
    (925) 989-0719
    and if you ever feel the desire for a fantastic place to celebrate life - here's where I go:
    http://newlifeinfo.com/

  • How to eliminate extra white when hovering over with a back ground color?

    I just finished my menu and I notice that the hovering color is not hiding all the white.  Does someone know how to eliminate extra white when hovering over with a back ground color?
    http://www.tammyfarringtoncreative.com/test/index.html
    Thanks!

    You have heights on the ul, li as 36px and a line-height of the text of 35px so they are not matching up.  Personally speaking I would normally recommend using padding on the links to create the height and not set the height on the ul or li elements.

  • I'm trying to turn voice over off but it won't let me put my passcode in. The bubble isn't turning white when i pit my passcode in. HELP

    I'm trying to turn voice over off but its nt letting me put my passcode in and the bubble isnt turning white when i put passcode in. When i put my passcode in i can hear voice over saying my passcode. HELP??

    To enter numbers in the passcode, tap each number to selct it, then double-tap the number to enter it.

  • HT5858 Before IOS7, I was able to double click the menu button and turn off apps to save battery, Is there a way to do this with IOS7?

    Before IOS7, I was able to double click the menu button and turn off apps to save battery, Is there a way to do this with IOS7?

    Sure thing...You're very welcome!
    Thank you for the points!

  • My screen on the Mac turn white when i turn it on, and i left the Mac on for a Hole Day to see if the screen would be fixed.. But i don't ! What can i do to fix it ?

    My screen on the Mac turn white when i turn it on, and i left the Mac on for a Hole Day to see if the screen would be fixed.. But i don't ! What can i do to fix it ?

    Is that all the information available? Nothing else happens? Sound or icons or anything? Try starting up while holding CMD V down and take pictures of the screen and upload them here

  • So i was updating my ipod touch (4g) to ios 6 and i needed to stop it in the middle of updating. so i held the home button and the lock button. it turned white and i tried charging it when it died but it went back to usual please help!

    so i was updating my ipod touch (4g) to ios 6 and i needed to stop it in the middle of updating. so i held the home button and the lock button at the same time for it to restart. It started turning on with the apple symbol and then the screen went white. I kept trying to do the same thing but it wouldnt work. Eace time i did that the screen was a different color. I was yellow/white at one point, blue at another time and sometimes the color behind the apple symbol. It got really HOT and i just let it die. When it was dead i put it on a charger. once it got charged up it started turning on with the apple symbol. then it turned white again and then restarted without me touching anything. When it restarted it turned the blue again. i took it off the charger immediantly because i didnt want it getting as hot as it was before. ive tried every way i know how to fix it but not putting it in the computer because i dont want it to ruin the computer. Please help because i really dont want to get a new ipod. Ive read a lot about how to fix it here on apple but there all the same answer and it still doesnt work. Please respond ASAP! thank you! i could really use your help right now!

    First see if placing the iPod in Recovery Mode will allow a restore.
    Next try DFU mode and restore.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    If not successful then time for an appointment at the Genius Bar of an Apple store. You are not alone with this problem.

  • 5.1.1 Chapter 4 Step 3 to 4: Record Button turn WHITE when Parameters are RED

    This is an odd behavoir and is the opposite of the way it should be.
    In the Apple Pro Training Series "Motion 5" book, Chapter 4, Step 3 to 4, when the Record Button is Red the Keyframeable parameters are White, and, when the the Record Button is WHITE the Keyframeable parameters are RED. This is just the opposite of what it should be.
    With the Keyframeable Parameters white it looks like this:
    When the Record Button is clicked on and activated, the KeyFrameable Parameters are Red (which is what I want) but the button turns white.
    Why should this be?

    Thanks for trying to help out. I read your reply all the while still thinking about what was written in the book, and what you said makes sense. But, I'm having some difficulty trying to understand what the book is saying now. I had thought that in Step 3, when the Command-Z is pressed to undo the rotation that it would undo the change. In fact, the Properties Inspector numbers were white but the Record Button was red - just the button, not the area in the button square surrounding the button. Elsewhere/somewhere, I saw that the entire square around the button would turn red.
    Since there has been an update to "5" since the book was written one thought was the red square was changed to turn red.
    Anyway, I can't do anymore on this for the time being as there are other thing I have to work on so I'll have to revisit this later. I hate doing any steps beyond what I know is "perfect" because I don't want to get off course with the book. There are a few other things in my life besides studying the Motion 5 book. Not a whole lot, but enough.
    Side note: After my original post I discovered a few things to edit but couldn't get the site to allow me to edit. For one thing, it isn't "Chapter 4", for anyone reading the book it's "LESSON 4". Don't want to confuse anyone who comes by later.

  • Screen turns white when someone calls

    My iPhone screen turns white occasionally when I turn the phone on--not a big deal becaus I just turn it off and on again using the power button BUT sometimes someone calls and the screen turns white! There is no possibility to answer because the screen goes white immediately and so I miss the call! To make matters worse I don't have caller ID and so I don't know whose call I missed.
    Is this software or hardware? How to fix!!!

    Apple said they would replace it--but it seems when they replace your phone you DON'T get a NEW one!! They use refurbished ones from the factory that have been rejected initially and then they get "refurbished" and pushed out. . .that kinda *****! I am almost tempted to keep the one I have and get caller ID so I can just figure out who called when the screen goes white and i can just call them back.

  • Horizontal spry menu style appears turned off when on the internet though can view it in live mode!?

    The style of the horizontal spry menu seems as to have been turned off when on the web though is visible and functioning on CS4 Dreamweaver design and live views. I have styled the spry menu and can view it in the properties section though the style setting is there on the internet it looks as if the styles have turned off and appears unformatted vertically when it should be a cascading horizontal menu bar. Not sure where the error is, I have looked at the coding and as I'm not the most experienced with spry.....
    this is the coding above the head.
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript">
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!--
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    //-->
    </script>
    I have noticed that SpryMenuBarHorizontal.css doesn't appear in the spry assets folder, does this matter? (not sure how to insert into the assets menu).  Any help would be greatly appreciated!

    thanks for testing it. I'm not sure how to proceed though as the css file is in my local_sites/spry assets folder for the website. I've tried to point it to other (copies of SpryMenuBarHorizontal.css) and spry assets folder externally from the site and again internally in the root folder and seems to make little or no difference.
    Your suggestion of what it should read,(sorry to sound so naive at all this) though would you mind giving a step-by-step guide on how to go about it? as I'm obviously missing something in the setup process.
    thanks again for your help.

  • All of a sudden all the links in my page enlarge 100% and turn white when clicked

    Hi - This is my first website and I have learned so much, but now I have a very irritating problem that I'm sure can be fixed by deleting a few lines of code, but I have no idea what to look for. All of a sudden all the links on one page of my site started turning white and enlarging almost 100% when you click on them. We page is at www.goEarthWorX.com/products. It happens to all the links on my page, and now there are weird white lines around one of the top products' names as well. Any help in what is going on would be very appreciated, as the site is almost complete and now I have this problem I just can't figure out on my own. Thank you so much!

    CSS: /products/#7 (You have a LOT of CSS sheets. Try combining into one)
    "the links on one page of my site started turning white and enlarging almost 100% when you click on them"
    a:active {
        color: #FFFFFF;    font-size: 200%;
        font-weight: bold;
        text-decoration: none;
    "now there are weird white lines around one of the top products' names as well"
    .oneColElsCtrHdr #apDiv98 a {
        border-style: solid;    color: #FFFFFF;

  • Safari window turns white when opening a new tab

    Hi,
    I noticed yesterday that when I launch Safari, and cmd click to open a new tab, the Safari window turns white for a second or two before coming back to life. This is an intermittent issue, I have only had it two or three times so far and it doesn't always happen.
    Its kind of similar to when opening too many windows in MS and the GPU struggles to render the windows...
    The only programs I have running at the time are Mail, VirusBarrier Traffic Monitor and, of course, Safari.
    Has anyone else had a similar problem or know a solution???

    HI,
    Uninstall VirusBarrier! See the post by: "Kappy" here.
    http://discussions.apple.com/thread.jspa?threadID=1796916
    There are no Mac viruses.
    Traffic Monitor may also be causing the problem. Anytime you have A/V software and 3rd party add-ons, your Mac is more vulnerable to performance issues.
    Carolyn

  • DVD STUDIO PRO: Menu Button does not work when in Simulation mode

    How can I make the MENU BUTTON work when I am playing my DVD in SIMULATION MODE? Right now nothing happens when I click on it. I want to make sure it works for the user.
    Thanks

    Not sure I understand.  Are you talking about the menu button on the remote control?  If so, I think you need to check the inspector for the disk in dvdsp and make sure the correct menu is selected for this button.  The behavior of the menu button can be a little tricky.  If I remember correctly, it usually toggles between the menu and the track. 
    If you're talking about a button you've created on a menu, select the button and set the target in the spector.

  • 6th gen iPod Nano screen turns white when connected

    I just got my replacement Nano for the 1st gen Nano recall. I plug it in to sync and the screen is white. Sync finished and I unplug it. I remove the dock connector cable and the homescreen appears, but is almost in a mirror like state. The screen is in the correct orientation, but the letters are backwards and hitting the lets say radio app opens the music app scrolling down, scrolls up, etc. Sleep-wake fixes the issue. Plug it in again and does it again. Restore it. Doesn't fix it. Hard reset, doesn't fix it.
    Playing with it a bit, it seems to be an issue with the dock connector. I wiggle the cable and the screen turns white or goes to that mirror like state until I sleep/wake it. Unplug it, screen goes white/ to mirror like state until completely unplugged. In any case, if I touch the cable and wiggle it, the screen goes between white and mirror state.
    Will an Apple Store replace it or do I need to send it in since it was a replacement program?
    Thoughts?

    You have 90 days warranty on your replacement Nano, see if you can visit an Apple Store or get it serviced.

  • What is that little triangle in the Location bar just to the left of the refresh button that turns blue when the mouse hovers over it?

    Installed Add-ons include:
    Adblock Plus
    Add to Search Bar
    Easy YouTube Video Downloader
    Element Hiding Helper for Adblock
    Flagfox
    Ghostery
    NoScript
    Tab Mix Plus
    TinEye Reverse Image Search
    Vertical Toolbar
    WOT

    Hi ApolloSerenus,
    You are probably referring to the location bar history. If you click on that button, a list of websites should appear. [[Clearing Location bar history|This article]] will give you information on clearing the history.
    You should also look at [[Location bar autocomplete]] for other cool things you can do with the Location Bar.
    Hopefully this helps!

Maybe you are looking for

  • Using Wireless in Windows 7 on Macbook White

    Hi, I recently purchased a Macbook white and have both Mac OS 10.6.2 and Window 7 installed using Bootcamp. However after setting up everything in the Windows 7, including drivers from the Mac OS installation disc; the network adapter (Broadcom 43xx)

  • ITunes Error 7

    Can someone please help me? What am I missing? I updated my iTunes last year roughly around October 2012, and ever since, I have been unable to access my account on my computer. I keep getting the same combination of Error Messages. Whether it is the

  • Downloading internet explorer to make payment online

    There are some websites that only allow me to make payments via Internet Explorer.  How do I download internet explorer on my imac?  Thanks

  • Export background images in bulk

    Does anyone have problems exporting background images in bulk?  After I capture a series of images and try to export them all at once to an external library, only the first few images export.  Additionally, their names are cut off in the new folder. 

  • How do you keep Tags organized when upgrading to PSE 9?

    I installed PSE 9 after using PSE 7 for the last two years. Once it installed and I opened Organizer, Organizer found my existing PSE 7 Catalog and asked if I wanted to convert it. I did, but lost the organization of my Keyword Tags. All my photos re