Background image seems to be applied twice Can someone help with this CSS issue....

Can someone help with this CSS issue....
http://66.162.81.144/cms400min/default.aspx
If you view the main page you will see that our background is
2 shades of
orange.. if you look at the line that divides those colors to
the right and
left you wil notice that the line is higher
if you notice that it seems that there is another background
on top of the
first one..its the only thing i can think of..
the only place where the image is being referenced is in this
CSS style
html, body
min-height:100%;
margin-bottom:1px;
text-align:center;
background-repeat:no-repeat;
background-image:url(images/Background-Color2.jpg);
background-color:#F74902;
background-position:center;
background-attachment:fixed;
Is there something wrong with the above CSS that could or
would cause this?
is it because im applying the image to both the HTML and
BODY?
ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
2008

You've attached the background to both the html and the body.
I would do this:
html, body {
min-height:100%;
margin-bottom:1px;
body{
text-align:center;
background-repeat:no-repeat;
background-image:url(images/Background-Color2.jpg);
background-color:#F74902;
background-position:center;
background-attachment:fixed;
Having said that the image doesn't look any higher on the
right than the
left to me in Firefox. Is it just an optical illusion?
Daniel wrote:
> Can someone help with this CSS issue....
>
>
http://66.162.81.144/cms400min/default.aspx
>
> If you view the main page you will see that our
background is 2 shades of
> orange.. if you look at the line that divides those
colors to the right and
> left you wil notice that the line is higher
>
> if you notice that it seems that there is another
background on top of the
> first one..its the only thing i can think of..
>
> the only place where the image is being referenced is in
this CSS style
>
> html, body
>
> {
>
> min-height:100%;
>
> margin-bottom:1px;
>
> text-align:center;
>
> background-repeat:no-repeat;
>
> background-image:url(images/Background-Color2.jpg);
>
> background-color:#F74902;
>
> background-position:center;
>
> background-attachment:fixed;
>
>
> }
>
> Is there something wrong with the above CSS that could
or would cause this?
> is it because im applying the image to both the HTML and
BODY?
>

Similar Messages

  • HT4356 I'm using my iPod and an Epson XP-810 printer to print pages from websites and emails and etc.  How do I print just 1 page out of 14 pages .  I don't see any settings on my iPod and can't find settings on the printer .   Can someone help with this

    I'm using my iPod and an Epson XP-810 printer to print pages from websites and emails and etc. 
    How do I print just 1 page out of 14 pages . 
    I don't see any settings on my iPod and can't find settings on the printer .  
    Can someone help with this problem

    Google show that you have to cut what you want to print and then paste it into a new app and print from that app.
    http://www.ipadforums.net/new-member-introductions-site-assistance/63145-printin g-one-page-ipad-2-a.html

  • While trying to down load the current update to Itunes i get the message "Older version of Bonjour can not be removed" and Itunes gets interrupted and wont finish update. Can someone help with this??\

    while trying to install latest itunes version i get this message "Older version of Bonjour can not be removed" and the download gets interrupted and doesnt finish. Can someone help?????

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Can someone help with this stuppid Media Encoder?!

    I'm tired of reading hunderts of topics. Can someone please tell me why the Media Encoder is not encoding at all. I've tried everything, but my progressbar always shows loading 00:00:00.
    That is not normal. I'm sick of using expensive software, full of bugs. Would someone from the support explain why is this happening and what should be done.
    I read a lot about this topic and there are no good replies on it.
    The system i'm using is:
    Intel Quad Q9550 2.88Ghz
    8Gbs of Ram
    GeForce 9600 GT
    The encoder is a stuppid program with one single stuppid purpose - encoding. When the encoding is not working, the whole CS 4 Studio is useless!
    I, like many others, i'm having serious problems while working on big projects and now of course i should see why the software becomes so buggy instead of doing my job.
    PLEASE HELP AS SOON AS YOU CAN!!!!

    If people have these problems, usually it is caused by:
    1. Incorrect system or lacking setup
    2. Heavy pollution and / or corruption
    3. Operator error
    1 is solved easily, 2 requires a reformat/reinstallation and 3 is very difficult to correct.
    To which category do you belong? 2 or 3?

  • Can someone help with this problem?

    i was syncing my music and suddenly itunes decided to put 1000+ photos in my iphone that took about 4GB of my storage can anyone help me delete it?

    On computer iTunes with your iPhone connected & selected, in Photos section, de-selected the photos and do a sync again.

  • Can someone help with this simple application

    I am taking my first java class and there are limited resourses for the class as far as getting help with coding.
    Any hoo if any one can point me in the correct direction from the following information listed below I would be greatfull. I am trying to use the set and get methods on the instance veriables and then I am goign to post the results once I get them workign to a JOption pane window.
    examples are most welcome thanks
    // Invoice.java
    // Homework assignment 3.13
    // Student Arthur Clark
    public class Invoice // public class
    String partNumber;// instance veriable quantity
    String partDescription;// instance verialbe partDescription
    //constructors
    public void setpartNumber( String number, String description )
              partNumber = number; //initalize quantity
              partDescription = description; // initalize partDescription
         }// end constructors
    //method getpartNumber
    public String getpartNumber()
              return partNumber;
         }//end method getpartNumber
    public String getpartDescription()
              return partDescription;
         }// end method getpartDescription
    public void displayMessage()
         //this is the statement that calls getpartNumber
         System.out.printf(" part number # \n%s!\n the description", getpartNumber(), getpartDescription() );
    } // method displaMessage
    }// end method main
    // Fig. 3.14 InvoiceTest.java
    // Careate and manipulate an account object
    import java.util.Scanner;
    import javax.swing.JOptionPane;//import JOptionPane
    public class InvoiceTest{
         // main method begins the exciution of the program
         public static void main ( String args [] )
              // create Scanner to obtain input from mommand window
              Scanner input = new Scanner ( System.in );
              // create a Invoice object and assig it to mymethod
              Invoice myMethod = new Invoice();
              Invoice myMethod2 = new Invoice();
              // display inital value of partName, partDescriptoin
              System.out.printf( "inital partname is %s\n\n", myMethod.getpartNumber() );
              // prompt for and read part name, partDescription
              System.out.println( "please enter the Part Number:" );
              String theNumber = input.nextLine(); // read a line of text
              myMethod.setpartNumber( theNumber ); // set the part name with in the parens
              System.out.println();// outputs blank line
              myMethod.displayMessage();
              System.out.println( "please enter the Part Description" );
              String theDescription = input.nextLine(); // read a line of text
              myMethod2.setpartDescription( theDescription );// set the part description
              System.out.println();// outputs blank line
              myMethod2.displayMessage();
         }// end main mehtod
    }// end class

    //constructors
    public void setpartNumber( String number, String description )
              partNumber = number; //initalize quantity
              partDescription = description; // initalize partDescription
         }// end constructorsThe above code is not a constructor. You do not include a return type, void or anything else. Also, the constructor should be called the same as your class.
    public Invoice( String number, String description )
              partNumber = number;
              partDescription = description;
         } Another thing, comments should only be used when it isn't bleedingly obvious what your code is doing.
    P.S. is your middle initial C?

  • Keep getting....'apple id invalid'...have tried many suggestions, to no avail. Can anyone help with this frustrating issue...ths.

    eep getting apple id invalid....have tried some suggestions...seems very frustrating....any suggestions?

    Thanks, Peter. 
    The "link related" and "text related" crashes were what I interpretted here, too, though I'm at a loss on how to proceed given that this is a fresh system and applications.  This is happening with multiple InDesign projects in a design office environment where many others work on the same files and none of the other computers are having problems with these files.  I've removed the same files listed (thank you for those) before and did so effectively with creating the new user account to test with, but it had no effect.  I just tried again though, as these files could easily have becone corrupt again if they were being written to when InDesign crashed.  Will let you know if that makes any difference.  I've also gone through and completely cleaned out the fonts again and once more cleared the font caches.  If need be I'll reboot this system into safe mode and try that way.
    Best,
    Mike

  • Hi... Can someone help with this situation, I am new with this.  My imac isn't connecting to any of my bookmarks or safari yet it says the wifi connection is working properly

    HI. My imac won't connect to safari nor any of my bookmarks , yet it says the wifi connect is good. Please help

    My OS is Mac OS X Version 10.7.4  When I click on the Safari icon, and look at my bookmarks, it won't open any of my bookmarks...and for the past 2 days, something has changed ... can't even access the help screen...or do any dianostics on my computer... cannot access internet, yet it says it's connected to my Wi-fi...

  • Can Someone help with this crash report - Any Ideas?

    Hello,
    Since OS X 10.4.6 Jedi Knight II Multiplayer crashes. It was perfectly fine before 10.4.6, and I can get it to run under classic. The Single-player app also works perfectly.
    The multi-player game will crash when trying to load certain maps.
    It generates the following crash report.
    CGFontKey.c:227: failed assertion `id[k].qx <= kCGFontSharedCacheKeyMaxQ'
    Does anyone have any ideas?
    I'd like to get this fixed, as I'd rather remove Classic from my system.
    Thanks

    Thanks for the quick reply.
    I've cleaned all font caches and have restored all fonts back to their original state. Still no joy. I have the same problem on my G4 at work, but not on my G3 iBook. (The iBook isn't fast enough to run the game adequately though).
    I wonder if there was anything specific that changed between 10.4.5 and 10.4.6 that caused this - such as a graphics card update -that would cause this. I've tried e-mailing the game developer, but no joy from them.
    Thanks for the suggestion though.

  • All of the sudden I cannot connect to my email the message says the mail server is not responding can someone help with this issue?

    woke up this morning could not connect to my email. Message just says unable to connect to server, hopefully someone can help me resolve this issue.

    Cannot connect to the incoming server, or were you trying to send mail? Who is your email provider? Have you checked email settings? Try a reset first, hold the sleep/wake and home buttons together until you see the Apple logo and then release. After the phone restarts, check again. Are you showing a signal for cellular data, or a wifi signal if you are on wifi?

  • Can someone help with this Actionscript 2.0 URL link problem

    Hi
    I've created a button that when clicked needs to jump to a
    frame, play the
    animation and then load a web page from the net.
    I've got the first bit alright with
    on(release) {
    gotoAndPlay(81);
    But what Actionscript 2 do I need to put in to jump to an URL
    after that?
    Any help would be appreciated.

    on the last frame of your animation, place a keyfame on the
    timeline in a layer called 'actions' then use the code:
    stop();
    getURL('
    http://www.thesite.com',
    '_self');

  • Can someone help with this getPos method of aList class ?

    public class AList<T> implements ListInterface<T>
    private T[] entries; // array of list entries
    private int length; // current number of entries in list
    private static final int MAX_SIZE = 50; // max length of list
    public AList()
    this(MAX_SIZE); // call next constructor
    } // end default constructor
    public AList(int maxSize)
    length = 0;
    entries = (T[]) new Object[maxSize]; // necessary cast to generic type
    } // end constructor
         public boolean add(T newEntry)
              boolean isSuccessful = true;
              if (!isFull())
         // Assertion: Length of list < length of array
         assert length < entries.length;
         // position of new entry will be after last entry in list,
         // that is, at position length+1; corresponding array index is
         // 1 less than this position, so index is length
         entries[length] = newEntry;
                   length++;
              else
                   isSuccessful = false;
              return isSuccessful;
         } // end add
         public boolean add(int newPosition, T newEntry)
         boolean isSuccessful = true;
         if (!isFull() && (newPosition >= 1) && (newPosition <= length + 1))
         makeRoom(newPosition);
         entries[newPosition - 1] = newEntry;
         length++;
         else
         isSuccessful = false;
         return isSuccessful;
         } // end add
         public T remove(int givenPosition)
         T result = null; // return value
         if ((givenPosition >= 1) && (givenPosition <= length))
         assert !isEmpty();     
    result = entries[givenPosition - 1]; // get entry to be removed
         // move subsequent entries toward entry to be removed,
         // unless it is last in list
         if (givenPosition < length)
         removeGap(givenPosition);
         length--;
         } // end if
         return result; // return reference to removed entry, or
    // null if either list is empty or givenPosition
    // is invalid
    } // end remove
         public T getEntry(int givenPosition)
         T result = null; // result to return
         if ((givenPosition >= 1) && (givenPosition <= length))
         assert !isEmpty();
              result = entries[givenPosition - 1];
         } // end if
         return result;
         } // end getEntry
    public int getPos(T anItem)
    }

    I would recommend using a for loop to compare anItem to each member of the array. If you get a match, return the index.

  • I purchased PS brushes from FastSpring and upon trying to install after download I am told my order is invalid. I am on an iMac and working in CS6. Can someone help with this?

    How do you contact Adobe?

    Normandiggity where are you receiving the message that the order is invalid?  When you are installing Photoshop? When you attempt to activate the plug-ins?

  • HT1365 Hi can anyone help with this issue regarding my wireless magic mouse? When im on google chrome and scrolling down the page i always have youtube running in the background but the audio cuts/spits/pops can anyone help me with this?

    Hi can anyone help with this issue regarding my wireless magic mouse? When im on google chrome and scrolling down the page i always have youtube running in the background but the audio cuts/spits/pops can anyone help me with this?

    The figures you mention only make sense on your intranet.  Are you still using the same wireless router.  The verizon one is somewhat limited as far as max wireless-n performace.  For one thing it only has a 2.4 radio.   I like many people who wanted wireless-n performance before they even added a wireless-n gigabit router, have my own handling my wireless-n network.

  • Can anyone help with Double Command issues. This a specific keyboard question and they do not seem to know.

    Before I go into a lengthy explanation of the problem: Can anyone help with Double Command issues. This a specific keyboard question and they do not seem to know.
    Thanks much.
    Emile

    Choose Force Quit from the Apple menu and close Mail from there.
    (103661)

Maybe you are looking for