Why isn't my image floating to the left side of the banner?

My question is why isn't my corperate image (#left_header) not floating on the leftside of the banner (#header)? Here's the coding and image
Style.css
body { margin:0 px; padding:0 px; } #header {     margin:0 auto;     width:743px;           height:334px;           background:url(images/Coperate_10.jpg) no-repeat; } #left_header {      float:left;            width:957px;      height: 500;            background:url(images/Coperate_01.jpg) no-repeat;           } #wrap { margin:0 auto; width:957px; height:500px; }template.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="header"></div>
<div id="left_header"></div>
<div id="wrap">
<div id="right_content"></div>
<div id="footer"></div>
</div>
</body>
</html>

Okay, the code didn't work, unless I've done it wrong. Here's everything. I'm going to rename things to make it more better to read (confusing myself).
Style:
body {
margin:0 px; padding:0 px;
#right_header {    
float:right;
margin:0 auto;
width:743px;
height:334px;
background:url(images/Coperate_10.jpg) no-repeat;
#left_header {   
  float:left;          
   width:196px;    
    height: 387;           
            background:url(images/Coperate_01.jpg) no-repeat;         
template:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="right_header"></div> <!---Banner-->
<div id="left_header"></div>  <!--Logo-->
<div id="wrap">
<div id="right_content"></div>
<div id="footer"></div>
</div>
</body>
</html>
image: What it suppose to look like. 

Similar Messages

  • How do I create new photo albums in iphone? why isn't it organized like in the iPad?

    How do I create new photo albums in iphone? why isn't it organized like in the iPad?

    You can't create new albums on the iPad either. The user interface looks different, but the functionality is essentially the same.
    The route is to create new albums on the desktop, and then sync via iTunes.

  • HT4085 Why isn't "hold" an option for the side switch on the iPad?

    Why isn't "hold" an option for the side switch on the iPad?
    I'd like to be able to let my 3 year old watch videos on the iPad, but young kids want to touch the screen.  I need a method to disable the touch screen.  Seems simple, why isn't this an option?
    Is there a way to write an app that allows the side switch to act as a "hold" switch?
    Mark

    mark915 wrote:
    Why isn't "hold" an option for the side switch on the iPad?
    I'd like to be able to let my 3 year old watch videos on the iPad, but young kids want to touch the screen.  I need a method to disable the touch screen.  Seems simple, why isn't this an option?
    Is there a way to write an app that allows the side switch to act as a "hold" switch?
    Mark
    The obvious solution is to put the iPad screen out of his reach.  Now that's innovative! 

  • HT4859 why isn't my phone giving me the option to restore my backup?

    why isn't my phone giving me the option to restore my backup on my new device?

    How did u backed your data? iCloud or iTunes
    Was iCloud tuned on before you reset or restore your device?
    Did you backed up the data on iCloud?
    If yes then you should get the option to restore from backup once you login with the same apple id that used to backup the data.
    Otherwise, if you backed up your data on iTunes
    You can setup the device as New
    Then connect the phone to iTunes
    Right click on your phone name & you will get the option to "Restore from Backup"
    Hope this helps

  • Why isn't moutain lion compatible with the macbook?  I have lion installed.

    Why isn't moutain lion compatible with the macbook?  I have lion installed.

    This is Apple's not so subtle hint that they will not begin to not supporting your machine anymore...

  • Why isn't my review appearing in the App Store?

    I've been trying to write (and re-submit, wondering if something went wrong in the process several times) a (scathing) review for Ulysses III for the past few weeks, and while I see new reviews appearing for the app and I'm able to submit (and edit) my reviews for other apps, it isn't working for this particular app. In fact, I was quite frustrated the first few times as I first ran into this problem while trying to edit a review that I wrote for it that I thought was properly posted only to be greeted with completely blank text boxes upon clicking "Write A Review." (Because of this, I've started the habit of copying/saving the reviews I write for apps. Very frustrating.)
    Why isn't this working? I spent $45 on this app that does not handle large documents well and would like others to know that very badly so they don't do the same if they plan on writing manuscripts—which is, as I learned tonight (and thus was reminded about this whole thing), what this particular app is being advertised for in the App Store.
    Please help.

    Suggest you link with iTunes store support and ask what has happened.
    Apple - Support - Topic Selection   >>> Other iTunes store topics seems best.

  • Why isn't Adobe Captivate part of the CC subscription? Can it be added to the suite?

    I Recently purchased a subscription for  CC, and honestly I just found out about Captivate. This is what I really need. Why isn't it includes with the subscription? It seems odd not to include it.

    This is an open forum with "some" Adobe staff participation, requests below
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for feature requests

  • Why isn't Java letting me change the background color of the current panel?

    Basically, I am just trying to learn all there is about interactive mouse gestures and am attempting to build some sort of frankenstein-ish paint program.
    Here is the code:
    import java.awt.Color;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    public class MyPaint extends JPanel
        JButton button;
        JFrame frame;
        int currentX;
        int currentY;
        int counter = 1;
        public MyPaint()
            createComponents();
            addComponentsToPanels();
            setFrameProperties();
            activateListeners();
        public void addComponentsToPanels()
            this.add(button);
        public void createComponents()
            button = new JButton("Button");
            button.setToolTipText("This is the first button");
        public void setFrameProperties()
            frame = new JFrame();
            frame.setSize(400,400);
            frame.setResizable(false);
            frame.setVisible(true);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add(this);
        public void activateListeners()
            MyMouseListener listener = new MyMouseListener();
            button.addMouseListener(listener);
            button.addMouseMotionListener(listener);
        private class MyMouseListener implements MouseListener, MouseMotionListener
            MyPaint myPaint = new MyPaint();
            public void mouseClicked(MouseEvent e) throws UnsupportedOperationException
                JOptionPane.showMessageDialog(null,"The mouse was clicked!");
            public void mousePressed(MouseEvent e) throws UnsupportedOperationException
                JOptionPane.showMessageDialog(null,"The mouse was pressed!");
            public void mouseReleased(MouseEvent e) throws UnsupportedOperationException
                JOptionPane.showMessageDialog(null,"The mouse was released!");
            public void mouseEntered(MouseEvent e) throws UnsupportedOperationException
                myPaint.setBackground(Color.RED); // why isn't this working? - I want the original panel to be red (not the newly created windows on top)
            public void mouseExited(MouseEvent e) throws UnsupportedOperationException
                myPaint.setBackground(Color.BLUE); // why isn't this working? - I want the original panel to be blue (not the newly created windows on top)
            public void mouseDragged(MouseEvent e) throws UnsupportedOperationException
                currentX = e.getX();
                currentY = e.getY();
                repaint();
            public void mouseMoved(MouseEvent e) throws UnsupportedOperationException // why is this only being called once?
                System.out.println("mouseMoved: " + counter);
                counter++;
        public static void main(String[] args)
            new MyPaint();
    }I would just like to know how to make the inner class set the background of the panel of the outer class of the same window instead of doing what I want but in a newly opened window.
    Any help in fixing this would be greatly appreciated!
    Thanks in advance!

    Thanks! I just wanted to add:
    In addition to commenting out MyPaint myPaint = new MyPaint() and removing the this keyword when dereferencing setBackground() in MyMouseListener , I also changed
    button.addMouseListener(listener);
    button.addMouseMotionListener(listener);
    into
    this.addMouseListener(listener);
    this.addMouseMotionListener(listener);
    so that the colour changes when you hover the cursor in or out of the panel instead of the button.

  • Why isn't iphone 5 available on the Irish site? And why is 4s only available with 8GB?

    I was searching for an iphone 5 on the Irish apple store and it doesn't seem to be for sale. I was also looking at the 4s and it only seems to be available with 8GB ,why is that also?

    Welcome to the Support Communities.
    rustic123 wrote:
    I was also looking at the 4s and it only seems to be available with 8GB ,why is that also?
    An iPhone 4s with only 8GB is cheaper for Apple to manufacture. "The idea is to put some distance between the iPhone 4S and Apple's new 'budget' iPhone, the iPhone 5C." ...From this article:
    Remember the iPhone 4S? Apple makes it an 8GB freebie

  • How can make an image "float" across the screen on a path I set?

    I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.

    welcome Bihmerson to the  iMovie boards ...
    Bihmerson wrote:
    I want to be able to insert an image, and set its path and speed so I can make it float on screen to my disgresion.
    not possible within iMovie (any version... )
    only option:
    FinalCutExpress, 199$ .. it allows anything you want..

  • Why isn't Greece navigation covered by the tom tom Europe app

    I have the tomtom Europe map on my ipod touch and although a number of countries are available, Greece isn't one of them and as it is definitely in Europe how do I get this added?

    The updates are pushed out via iTunes, as is all content for iOS devices.  The app developer is still the one responsible for providing the updated content to Apple.  Apple does nothing more than allow the content to be placed in the store, and then make it accessible to iOS users.
    Seems TomTom's folks just messed up the iOS update release?
    http://discussions.tomtom.com/t5/TomTom-Navigation-app-for-iPhone/Why-is-Greece- not-in-the-Europe-bundled-apps/td-p/145995

  • Why isn't there a modem inside the Airport?

    This is just out of pure curiosity but why doesn't Apple make an Airport with a modem included in it? All the other manufacturers do. I have a Netgear modem with built in Wi-Fi and my parents have a D-Link modem with built-in Wi-Fi. Why does Apple insist that you need to attach some ugly modem to their very attractive AEBS? Seems very un-Apple-like, no? I'd definitely buy one (and lots of other people I know) if it means getting rid of one electronic box, having less cables to tangle and free up a power socket.
    Just curious... you know?

    This is just out of pure curiosity but why doesn't Apple make an Airport with a modem included in it?
    Perhaps the decision process went like this...
    If a DSL modem was included it would limit the use to DSL connections. One could guess that not all DSL connections are the same and therefore it would only work with some DSL connections.
    If a cable modem was included it would limit the use to cable Internet connections. I know that not all cable modem connections are the same and therefore it would only work with some cable modem connections.
    Both of these items would cater to an audience. However if the AEBS is just an Ethernet router with no modem it would appeal to a much larger population of customers. Probably better than 99.99% use Ethernet to connect their computers.
    This has an added benefit of a single production line and a single inventory of parts. Also the Apple support staff never has to answer questions about why ISP service isn't working with the AEBS.
    Instead of suffering with a mediocre modem which attempts universal compatibility, those customers with DSL or cable modem connections could get the best modem for their connection and then add wireless networking as they needed it.
    All the other manufacturers do.
    Although I would agree that many do, I don't believe all do. And among those that do offer models without a modem.

  • Why isn't .jfif not listed in the JPEG file extensions (.jpg, .jpeg, .jpe) Photoshop Elements 12

    Problem:  Corrupt JEPG files. 
    Software:  Adobe Photoshop Elements 12
    Story: On my website I have the option to sell files as instant downloads.  I upload JEPG 300dpi images of my artwork for people to purchase is a download.  I have done this on Etsy for several years without a problem. 
    The problem began when I setup a website using Weebly, an online build your own website company.  I upload the same files I have used in the past, but when I do a test purchase and download my file it is corrupt.  I get an error message in Photoshop Elements that the file is corrupt or missing information.  If I let Photoshop open the file, the file it is only half there or lines through the image.
    I have been working with a Weebly tech to solve the problem.  I sent him the file I wanted to upload.  He opened the file on his computer and saved it.  Then uploaded to my site, I downloaded it and the file was fine a perfectly clear 300 pdi JPEG file.  We were confused.  After a few more tests he mentioned he did not have Photoshop and was using Microsoft Paint (light bulb) to open and save the files. His files worked, mine did not. 
    So I tried opening my files in Paint and saving them in that JEPG format and they work.  The only difference i can see between Paints JEPG save option and Photoshops Save Function is that Paint includes the .jfif extension. 
    Question:  Should this make a difference?  if so can I add the file extention to Photoshop's list of file types that I can save?
    Thanks
    Mark

    Thank you I will check it out.  I am not sure what information is attached to picture files, but the same file saved in Microsoft Paint works in my situation and the Photoshop file will not. The only difference is Paint supports.jfif and photoshop does not.  I might want to go the other way jpg to jififs. or save with to jepg with software that supports jfifs.  

  • Why isn't Photoshop fully optimized for the Mac Pro (Late 2013), and when will this happen?

    On the new Mac Pro (late 2013):
    Currently, Photoshop CC 2014 seems to lag behind iMacs and Macbook Pros (even older ones) for some tasks.
    I assume that this issue is related to either multi-core processing but seems more likely to be a problem with the ATI GPUs not being optimized as the Nvidia GPUs are.
    Why is this the case, and when will this be addressed?
    Any feedback from Adobe official would be appreciated.
    Thanks

    jameskachan wrote:
    …The obvious reason [sic] seems to suggest…
    That's what it suggests to you, in the limited scope of your vision and knowledge, and without your having provided detailed specs about your hardware.
    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    We don't even know what your specific issues are, and for all we know you may be running the pathetic, buggy Yosemite OS—which Apple is giving away for free.
    In this case, you have been enormously fortunate in that you received a reply from none other than Gµrµ Chris Cox, a top Adobe engineer who has been writing Photoshop code since the last millennium.
    It's hight time you drop the attitude and avoid further embarrassing yourself in a public forum.  Just my two cents.

  • Why isn't my password working for the app?

    Hi,  Isn't the password the same for the skype account (in a browser) and the VoIP application the same? I can log in and check my subscriptions, credits, and etcetera but CANNOT use the same passoword with the user name in the application. What am I doing wrong?  Best, Ben

    Just reset the TC and start over with a fresh clean setup.
    This will not harm any backups or anything on the hard disk.
    What version TC is it?
    Mavericks is causing loads of problems.. I would be pointing the finger there.
    The Factory Reset Gen1-4.
    Unplug your TC. Hold in reset. and power the TC back on.. without releasing reset for about 10sec. When the status light flashes rapidly; release it.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.

Maybe you are looking for