Please help, my website is not displaying the banner or the bkground image

Hello,
Can someone please help me out, my banner and background image are not displaying in firefox they show up in internet explorer just fine.
Thank you for help.

This is what we get when we go to the FireFox browser tools and error console and this is highlighted in grey "filter:alpha(opacity:0.1);" thank you for all the help.
@charset "UTF-8";
/* SpryMenuBarVertical.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
LAYOUT INFORMATION: describes box model, positioning, z-order
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
/* 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;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 16px;
     color: #000;
     text-decoration: none;
     background-color: #FFF;
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
DESIGN INFORMATION: describes color scheme, borders, fonts
/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
     background-color: #FFF;
     color: #060;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 16px;
     text-decoration: none;
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
     background-color: #FFF;
     color: #060;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 16px;
     text-decoration: none;
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.MenuBarVertical a.MenuBarItemSubmenu
     background-image: url(http://www.foxscientific.com/fox%20webdw/SpryAssets/SpryMenuBarRight.gif);
     background-repeat: no-repeat;
     background-position: 95% 50%;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 16px;
     color: #000;
     text-decoration: none;
     background-color: #FFF;
/* 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.MenuBarVertical a.MenuBarItemSubmenuHover
     background-image: url(http://www.foxscientific.com/fox%20webdw/SpryAssets/SpryMenuBarRightHover.gif);
     background-repeat: no-repeat;
     background-position: 95% 50%;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 16px;
     color: #060;
     text-decoration: none;
     background-color: #FFF;
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.MenuBarVertical iframe
/* 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.MenuBarVertical li.MenuBarItemIE
     display: inline;
     f\loat: left;
     background: #FFF;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 16px;
     color: #000;
     text-decoration: none;
Claudia Lopez
Fox Scientific, Inc.
8221 E. FM 917
Alvarado, TX 76009
800-369-5524 Ext. 305
817-783-3571 Fax
"Do not follow where the path may lead. Go instead where there is no path and leave a trail."  Harold R. McAlindon

Similar Messages

  • Please help: my website does not display properly in firefox

    (note) everything works fine clientside
    I'm totally new here but I really really need help debugging
    my website. The problem is I have a flash file the loads an xml
    file to display pictures. Basicallly a gallery. It works in IE but
    not Firefox and I can't understand why.
    here is the offending pages
    3dart Page |
    Print Page
    as you can see they display fine in IE. try in mozilla
    firefox and the server just hangs. here is the actionscript from
    the .fla:
    function loadXML(loaded) {
    if (loaded) {
    xmlNode = this.firstChild;
    image = [];
    description = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    image
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    description
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    firstImage();
    } else {
    content = "file not loaded!";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("freelance.xml");
    listen = new Object();
    listen.onKeyDown = function() {
    if (Key.getCode() == Key.LEFT) {
    prevImage();
    } else if (Key.getCode() == Key.RIGHT) {
    nextImage();
    Key.addListener(listen);
    previous_btn.onRelease = function() {
    prevImage();
    next_btn.onRelease = function() {
    nextImage();
    p = 0;
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
    preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
    preloader._visible = false;
    if (picture._alpha<100) {
    picture._alpha += 10;
    function nextImage() {
    if (p<(total-1)) {
    p++;
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    desc_txt.text = description[p];
    picture_num();
    function prevImage() {
    if (p>0) {
    p--;
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    desc_txt.text = description[p];
    picture_num();
    function firstImage() {
    if (loaded == filesize) {
    picture._alpha = 0;
    picture.loadMovie(image[0], 1);
    desc_txt.text = description[0];
    picture_num();
    function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
    stop();
    if anyone would help me debug this I would really appreciate
    this, I'm not good with code. I'll give you the source files to
    look at if need be, i'm desperate! thanks

    Can you attach some [http://en.wikipedia.org/wiki/Screenshot screenshots] for comparison to show what you mean?
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).

  • Please help.  I do not know how to delete the app draw something from my iPad 2. Can you help?

    I know this may be a silly question... Please don't judge... Could someone please explain to my how to go about deleting an app. Draw something.  From my ipad2?  It is completely frozen and won't open after updating it.  Many thanks for any help.

    To delete an App, hold your finger on the app until all Apps start jiggle.  An X will appear in the upper left corner of the App.  Touch the X and the App will be deleted from your iPad.  You can redownload the App anytime in the future as once you've bought an App, it's yours as long as you are using the same Apple ID.

  • Please help me, I do not uninstall applications downloaded from the app store

    Please help...

    Are you on the home screen?  Press down on the app icon until they all jiggle. 

  • Please help, jsp pages does not display...

    Hi, I am writing simple JSP pages and running it on
    Tomcat.
    I create a jsp file that has frame in it
    (call this chat_entry_frame.jsp)
    In the frame I call other 2 jsp pages.
    (which is chat_entry.jsp and chat_control.jsp)
    When I test both chat_entry.jsp and chat_control.jsp
    separately, they both fine.
    But when I try to call chat_entry_frame.jsp, it did not
    show anything.
    I have not create web.xml file inside my application...
    I just call both jsp files by specifing their path (relative
    path). All jsp files I put in the same directory.
    So, I wonder what is wrong?
    Thanks in advance for help and suggestion!
    Here are the jsp files:
    chat_entry_frame.jsp:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <%@ page errorPage="chat_error.jsp" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=x-user-defined">
    </meta>
    <title> Online Chat Frame </title>
    </head>
    <body>
    <frameset cols="25%, 75%" border="0">
    <frame src="/chat/jsp/chat_control.jsp" name="entry_control">
    <frame src="/chat/jsp/chat_entry.jsp" name="entry_screen">
    </frameset>
    </body>
    </html>
    chat_control.jsp:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <%@ page errorPage="chat_error.jsp" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=x-user-defined">
    </meta>
    <title> Online Chat </title>
    </head>
    <body bgcolor="#00FFFF">
    <font face="Verdana" color="black">
    <table border=0 cellspacing=0 cellpadding=0 rows=4 cols=1 width=100% bgcolor=#00FFFF>
    <tr>
    <input type="hidden" name="chatCommand" value="register_entry"></input>
    <input type="submit" value="Register" name="register"></input>
    </tr>
    <tr>
    <input type="hidden" name="chatCommand" value="faq_entry"></input>
    <input type="submit" value="FAQ" name="faq"></input>
    </tr>
    </body>
    </html>
    chat_entry.jsp:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <%@ page errorPage="chat_error.jsp" %>
    <%
    String username = "";
    try
    username = (String) session.getAttribute("username");
    if (username == null)
    username = "";
    catch (java.lang.NullPointerException ex)
    username = "";
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=x-user-defined">
    </meta>
    <title> Online Chat </title>
    </head>
    <body bgcolor="#00FFFF">
    <font face="Verdana" color="black">
    <h3 align="center"> Login Page </h3>
    <br>
    <h5>
    <form name="chat_entry" method="POST" action="/chat/servlet/ChatEngine">
    <table border=0 cellspacing=0 cellpadding=0 rows=4 cols=1 width=100% bgcolor=#00FFFF>
    <tr>
    <td><label for="username">Username: </label></td>
    <td><input type="text" name="username" value=<%=username%> ></input></td>
    </tr>
    <tr>
    <td><label for="password">Password: </label></td>
    <td><input type="password" name="password"></input></td>
    </tr>
    <tr>
    <td><input type="hidden" name="chatCommand" value="check_login"></input></td>
    <td><input type="submit" value="login" name="submit"></input>
    <form name="forgot_password" method="POST" action="/chat/servlet/ChatEngine">
    <input type="hidden" name="chatCommand" value="forgot_password"></input>
    <input type="submit" value="Forgot Password" name="submit"></input>
    </form>
    </td>
    </tr>
    </h5>
    </body>
    </html>

    Hi,
    Your problem is not with TomCat, When you specify a frameset, the HTML code cannot have the body tag, just remove it from your chat_entry_frame.jsp and it has to work.
    Hope this helps...

  • My ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    my ipod 7th generation is not recognised by itunes and my computer. I am not able to transfer any songs. Please help me on this regard. I tried all the steps from apple website

    This article should give you the options
    https://discussions.apple.com/docs/DOC-3991

  • What should I do if annemen the Macbook Pro does not want a USB stick? Please Help me?, What should I do if annemen the Macbook Pro does not want a USB stick? Please Help me?

    What should I do if annemen the Macbook Pro does not want a USB stick? Please Help me?, What should I do if annemen the Macbook Pro does not want a USB stick? Please Help me?

    What are you talking about? What is annemen? Clarify.

  • Help!!! How to make quicktime plugin do not display on top of the web page?

    Any one knows how to make quicktime plugin do not display on top of the web page??? I've tried to change the zIndex property using javascript, but it doesn't work.
    Because we have some widgets which are required to be moved to anywhere on the page, we use iframe to implement that, so it can display on top of quicktime plugin, but the plugin flickers sometimes when we do some operation on the widget which is on top of it.
    Anyone can helps me? Thanks in advance!!!
      Windows XP Pro  

    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    Check the docs. Trent is usually very thorough in his
    instructions.
    Hint: I haven't studied it but it probably involves modifying
    one of DW's
    built-in Behaviors.
    Walt
    "ducati1" <[email protected]> wrote in
    message
    news:gkb906$qrd$[email protected]..
    > Wow that DW extension is just what I needed.
    > Thanks..
    > Can you tell me how to set the script so that the
    lightbox image is
    > displayed
    > on mouseover instead of mouse click.
    > I currently have the thumbnails set to insert the ALT
    text into a text box
    > on
    > mouse click.
    >

  • Please help! I do not see the songs on my iphone when it's connected to my computer .  I want to transfer the songs back / forth.  thanks in advance.

    Please help! I do not see the songs on my iphone when it's connected to my computer in Itunes.  I want to transfer the songs back / forth.  thanks in advance.

    iOS 7.1 update requires approximately 350MB's of storage space.
    Tap Settings > General > About > Available to see free storage space.
    Very important to never allow the free storage space to fall below at the very least 500MB's or your iPhone may not boot.
    You need to free up storage space on your iPhone for future updates as well.
    Help here >  6 Tips to Free Up Tons of Storage Space on iPad, iPhone, and iPod Touch

  • Please help my iMac will not start. The apple logo comes up and the wheel goes round and then I am left with an empty white sceen can anyone help

    Please help, my iMac will not start up, the apple comes up and the wheel goes round but then I am left with a blank white screen. Has anyone any ideas.

    Locate your original install disk (it's grey) and use it to restart your iMac by holding the "C" key during startup. Use the disk utility to repair your harddrive.

  • TS2446 Please help me,I can not purchase from apple store becuse it is ask me the secirty question in my apple ID but I forget my secrity question

    Hello,
    Please help me,I can not purchase from apple store becuse it is ask me about the secirty question in my apple ID but I forget my secrity question.
    Thanks,

    If you can't remember them then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Security' and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 to 48 hours (and check your Spam folder as well as your Inbox). A month or two ago Apple had temporarily suspended the reseting of security question/answers whilst account security processes were improved, but that may now have finished.

  • I can not install the Express after the Extreme tha AirPort tool is of no help. It does not display any base station.

    I can not install the Express after the Extreme tha AirPort tool is of no help. It does not display any base station.

    What is the exact model of the AirPort Express that you are trying to install? Which version of the AirPort Utility are you using? What is the operating system and version, and on what device, are you running the AirPort Utility on?

  • I can buy my needs from the game says I tell customers to help please help me Visa card not working in any Itemes games

    I can buy my needs from the game says I tell customers to help please help me Visa card not working in any Itemes
    games

    If you mean that you have been instructed to contact iTunes support, then will need to do what it says, contact iTunes Support. These are user-to-user support forums, if you thought you were contacting Apple by posting here. Go here:
    http://www.apple.com/emea/support/itunes/contact.html
    to contact the iTunes Store.
    If that does not answer your question, try posting in your native language, or find a friend with a better command of English to help you ask your question here.
    Regards.

  • My apple TV will not display anything although it [the TV] meets all of the requirements. It worked for about four or five days and than stopped yesterday, but when i brought it to the apple store, it connected fine to their tv. Any help or suggestion?

    My apple TV will not display anything although it [the TV] meets all of the requirements. It worked for about four or five days and than stopped yesterday, but when i brought it to the apple store, it connected fine to their tv. Any help or suggestion?

    mrdctaylor wrote:
    Since I updated to the latest/greatest version of the software I can no longer put my Apple TV to sleep by holding down the middle button.
    Thanks!
    Apple have changed this setting with the Apple TV Software Update 5.1:
    About Apple TV (2nd and 3rd generation) software updates
    Feature
    Summary
    Shared Photo Streams
    Accept invitations for Shared Photo Streams, browse photos and comments, and receive notifications of new content.
    AirPlay
    Send audio content from Apple TV to AirPlay-enabled speakers and devices (including AirPort Express and other Apple TVs). Also includes the ability to require an onscreen code to use AirPlay with your Apple TV.
    iTunes account switching
    Save multiple iTunes accounts and switch quickly between them.
    Trailers
    Search movie trailers. In the United States, see show times for local theaters.
    Screen savers
    New Cascade, Shrinking Tiles, and Sliding Panels screen savers.
    Main menu
    Reorder icons on the second page by holding down the select button on the remote.
    Subtitles
    SDH support for the deaf and hard-of-hearing as well as improvements to viewing and selecting subtitles.
    Network configuration
    Support for setting up advanced network options using configuration profiles. Seehttp://support.apple.com/kb/HT5437 for more information.
    Stability and performance
    Includes general performance and stability improvements.
    If you don't like this, you can leave feedback here: Apple Feedback

  • Some websites do not display properly or function

    Using Firefox v29.0.1; running Win 7 Pro 64-bit version.
    Some websites do not display properly - as if Firefox is not finding the CSS (Facebook for one).
    Also, on Craig's List, I can't click on any of the links including the contact/reply button.
    Wanted to attach screenshots but see no place to do so.
    Thanks,
    paulp575

    Looks like something in my history must have been causing it.
    That's the only step I needed to go through and seems as though everything has cleared up - for now.
    Thanks Phillipp for your help!
    paulp575

Maybe you are looking for

  • Error while saving Web Template in WAD

    When i try to save a web template in WAD i get an error masg " Unable to generate history entry" and when i save ok i can see that the templete has been saved wven though i had the error message.I am in BI 7.0.Any idea what this error is and how do i

  • How to use java code in my forms.................

    Hi All, I want to use the below java code in my form 6i ..but don't know how???????? related function is also given below.......... Any idea .......Please Thanks Harry..... import java.awt.*; import javax.swing.*; import java.awt.event.*; import java

  • BADI'es

    I'm trying to understand (cause I'm newbie in ABAP) BADI concept. After reading standard course BC425 and some help notes I'm searching for any case studies, which can show me implementation aspect of BADI creation. For any helping link (clue) points

  • Submitting data through API without exposing DB credentials

    Submitting transaction / master data through API without exposing DB credentials I am developing a scenario where I will submit transaction / master data like sales order / master item to Oracle apps (EBS) through MS Excel via API / interface table b

  • Why do my fonts look bad in jre1.5.0_07?

    The project I'm working on at the moment which I finally had working well, now needs to be upgraded to run with jre1.5.0_07. What I find weird is when I run it with the jre1.5.0_07, the text looks fine until i print it, then it looks really bad, depe