Looks good in firefox browser but looks like hell on upload to my server

I created a webpage, used a simple template of 'header' 'content' 'footer', inserted an image into the header, inserted a table then image then table in the content, and nothing in the footer. it looks great when previewed with Firefox or Explorer. But when I upload it to my server it looks like hell. The image in the header is off to the side, my content is overlaying the header. the left side of the template is dark gray.  What could have possibly happened?
Thank you in advance for any help you can give.
here is my code.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>main page</title>
<link href="_css/one page with header.css" rel="stylesheet" type="text/css">
<style type="text/css">
body {
    margin-left: 300px;
    margin-right: 300px;
</style>
<script type="text/javascript">
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
</script>
</head>
<body onLoad="MM_preloadImages('_images/Kindle overlay button.jpg','_images/iBook overlay button.jpg','_images/Nook overlay button.jpg','_images/Kobo overlay button.jpg')">
<div class="container">
  <div class="header">
    <!-- end .header -->
  <img src="_images/How To Go Back To Work-blue- banner.jpg" alt="banner" width="1000" height="200" align="middle">  </div>
  <div class="content">
    <div align="center">
      <table width="778" height="60" border="1" cellpadding="1">
        <tr>
          <td height="51"><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kindle button','','_images/Kindle overlay button.jpg',1)"><img src="_images/Kindle button.jpg" alt="Kindle Buy Button" width="100" height="40" id="Kindle button"></a></div></td>
          <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('iBook','','_images/iBook overlay button.jpg',1)"><img src="_images/iBook button.jpg" alt="iBook Buy Button" width="100" height="40" id="iBook"></a></div></td>
          <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Nook button','','_images/Nook overlay button.jpg',1)"><img src="_images/Nook button.jpg" alt="Nook Buy Button" width="100" height="40" id="Nook button"></a></div></td>
          <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kobo button','','_images/Kobo overlay button.jpg',1)"><img src="_images/Kobo button.jpg" alt="Kobo Buy Button" width="100" height="40" id="Kobo button"></a></div></td>
        </tr>
      </table>
    </div>
    <p><img src="_images/Index page 4.jpg" alt="Index image" width="1000" height="2532" align="bottom"></p>
      <div align="center">
        <table width="778"  height="60" border="1" cellpadding="1">
          <tr>
            <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kindle button','','_images/Kindle overlay button.jpg',1)"><img src="_images/Kindle button.jpg" alt="Kindle Buy Button" width="100" height="40" id="Kindle button2" align="absmiddle"></a></div></td>
            <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('iBook button','','_images/iBook overlay button.jpg',1)"><img src="_images/iBook button.jpg" alt="iBook Buy Button" width="100" height="40" id="iBook button"></a></div></td>
            <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Nook button','','_images/Nook overlay button.jpg',1)"><img src="_images/Nook button.jpg" alt="Nook Buy Button" width="100" height="40" id="Nook button2"></a></div></td>
            <td><div align="center"><a href="#" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('Kobo button','','_images/Kobo overlay button.jpg',1)"><img src="_images/Kobo button.jpg" alt="Kobo Buy Button" width="100" height="40" id="Kobo button2"></a></div></td>
          </tr>
        </table>
      </div>
    <blockquote>
      <blockquote>
        <blockquote>
          <blockquote>
            <p> </p>
          </blockquote>
        </blockquote>
      </blockquote>
    </blockquote>
  </div>
  <div class="footer">
    <p> </p>
    <!-- end .footer --></div>
<!-- end .container --></div>
</body>
</html>

You may have forgotten to upload your .css file.
Without a link to the actual page, it's hard to say what else might be wrong.
If you uploaded your css, one thing to look at is the case structure of your files. Servers are CaSe SenSiTiVe, your local OS is not, so a link like " _css/one page with header.css" will work with a file named "One Page With Header.css" locally, however, online the link would break since the two names (one all lower case the other with "camel case" structure) would be considered different files by the server.
Be careful with file names for that reason. They really should be simple lowercase alpha numerics with no spaces (use underscores or hyphens instead).

Similar Messages

  • I uploaded 2 powerpoints with no problem, now it looks like it has uploaded to icloud but the icon is a page with a "P" on it. Any help please?

    I uploaded 2 powerpoints with no problem, now it looks like it has uploaded to icloud but the icon is a page with a "P" on it. Any help please?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • I have a Mac osx 10.5.8 I HAD a Firefox browser but got sucked in by an update offer and now I have no Firefox browser and cannot get it back. Please advise.

    I have a mac powerbook G4 OSX 10.5.8 I USED to have a Firefox browser, but I got sucked in by an invitation to update, didn't realize that the circle with a line through it meant, "don't try to put this in your computer" but it must mean something like that because even tho I later tried to load a different update for a Firefox browser that said for mac osx10.5 or later, and that came up with a circle with a line through it too. How do I find the Firefox version that is compatible with my laptop? The old one was working just fine until I tried the update!!! Please advise.

    P.S. '''For Mac OS X 10.5 users with an Intel Mac''', the latest version of Firefox that will work is Firefox 16. Link: [https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/16.0.2/mac/en-US/Firefox%2016.0.2.dmg Firefox 16 (US English)]
    Related article: [[Firefox no longer works with Mac OS X 10.5]]

  • I use Firefox Browser, but I don't have a toolbar. I have tried to install the Verizon toolbar, but that just throws me back to internet Explorer 9 as my brows

    I have been using Firefox as my browser, but haven't had a toolbar. I tried to use Verizon's toolbar, but that keeps throwing me back to Internet explorer 9, which I don't want to use, and asks me to use I.E 9 as my default browser. All I want is to use a toolbar with FF ( preferably verizon toolbar, but would use FF toolbar as well), and I can't seem to get one without having to use Int. Exp. 9. Any ideas as to what I can do to get a toolbar on my FF browser?

    Hello Fzsishn, did you try to [https://support.mozilla.org/en-US/kb/navigation-buttons-missing#w_restoring-the-default-toolbar-set Restore the default toolbar set] ?
    thank you

  • I am wanting to update my Firefox browser but it will not download keeps saying file corrupt download extract failed. Im currently using Windows XP. Please help.

    Hi. I am currently using an old Firefox browser on Windows XP. I have attempted to update to the latest version but it keeps failing - download extractions fail. The file shows as corrupt and will not download or install.

    Try to download Firefox here: http://www.mozilla.com/firefox/all.html
    http://download.mozilla.org/?product=firefox-3.6.6&os=win&lang=en-US
    http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.6.6/win32/en-US/
    You can also try to disable the real-time file check in your anti-virus software during the download and installation of Firefox.
    Do not forget to re-enable once you're done.

  • Why does my hotmail account will no longer allow me to reply, foreward or create new email when in use with the firefox browser but allow me to do those things when using IE?

    5-6 days ago my hotmail account began to say words to the effect that it could not perform the above described actions. I sent a few inquiries but have received no response. I opened a gmail with which seems to work just fine except for one aspect which I will mention later. When I opened IE(without add-ons) and accessed hotmail the above mentioned actions seem to work just fine. I have used firefox as my browser for about 6-7 years with no problems. The computer i use is still the same and i have made no changes other than to install MS updates which occur automatically. I'm puzzled. Can you assiist?
    The issue I'm having with gmail is that I cannot figure out how to force a log-in asking for username and password and how to force an explicit logout.
    Any assistance will be greatly appreciated.
    Phil Bayles

        I'm sorry you have not been able to utilize your text messaging AlaynaFHirsch. I recommend downloading the new software to your phone. It will definitely help with functionality issues. Are you using a 3rd party messaging application? Have you tried to perform a restore on your account?
    KinquanaH_VZW
    Follow us on Twitter @vzwsupport

  • Gchat is no longer working on my Mozilla Firefox browser, but is working on Chrome...

    I have read Chris Ilias' response to another question similar to mine and have tried the solutions he provided on that thread. Clearing the cookies/cache, restarting firefox in safe mode with add-ons disabled...etc. I have not been able to solve this issue and have inserted my firefox details from my clipboard below. Only other thing I can think of is deleting Firefox and re-installing, but then I would lose my bookmarks, right?
    Clipboard info:
    Application Basics
    Name
    Firefox
    Version
    17.0.5
    User Agent
    Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/20100101 Firefox/17.0
    Profile Folder
    Show Folder
    Enabled Plugins
    about:plugins
    Build Configuration
    about:buildconfig
    Crash Reports
    about:crashes
    Memory Use
    about:memory
    Extensions
    Name
    Version
    Enabled
    ID
    Symantec Vulnerability Protection
    12.2.0.5 - 1
    true
    {BBDA0591-3099-440a-AA10-41764D9DB4DB}
    Important Modified Preferences
    Name
    Value
    browser.cache.disk.capacity
    358400
    browser.cache.disk.smart_size.first_run
    false
    browser.cache.disk.smart_size.use_old_max
    false
    browser.cache.disk.smart_size_cached_value
    358400
    browser.places.smartBookmarksVersion
    4
    browser.startup.homepage_override.buildID
    20130328110703
    browser.startup.homepage_override.mstone
    17.0.5
    extensions.lastAppVersion
    17.0.5
    gfx.direct3d.prefer_10_1
    true
    network.cookie.prefsMigrated
    true
    places.history.expiration.transient_current_max_pages
    91655
    privacy.sanitize.migrateFx3Prefs
    true
    Graphics
    Adapter Description
    Intel(R) HD Graphics 4000
    Vendor ID
    0x8086
    Device ID
    0x0166
    Adapter RAM
    Unknown
    Adapter Drivers
    igdumd32 igd10umd32 igd10umd32
    Driver Version
    8.15.10.2639
    Driver Date
    2-1-2012
    Direct2D Enabled
    true
    DirectWrite Enabled
    true (6.2.9200.16492)
    ClearType Parameters
    ClearType parameters not found
    WebGL Renderer
    Google Inc. -- ANGLE (Intel(R) HD Graphics 4000) -- OpenGL ES 2.0 (ANGLE 1.0.0.1242)
    GPU Accelerated Windows
    1/1 Direct3D 10
    AzureCanvasBackend
    direct2d
    AzureFallbackCanvasBackend
    cairo
    AzureContentBackend
    direct2d
    JavaScript
    Incremental GC
    1
    Accessibility
    Activated
    0
    Prevent Accessibility
    0
    Library Versions
    Expected minimum version
    Version in use
    NSPR
    4.9.5
    4.9.5
    NSS
    3.14.3.0 Basic ECC
    3.14.3.0 Basic ECC
    NSS Util
    3.14.3.0
    3.14.3.0
    NSS SSL
    3.14.3.0 Basic ECC
    3.14.3.0 Basic ECC
    NSS S/MIME
    3.14.3.0 Basic ECC
    3.14.3.0 Basic ECC

    Why are you using such an old version of Firefox? Upgrading to at least 28 might solve the issue in case you've heard of Firefox 29's new UI and don't want to switch. This link will get 29.0.1 but if you want 28, it can be downloaded through the [[Install an older version of Firefox]] link.
    *https://www.mozilla.org/en-US/firefox/all/
    Please try updating to at least Firefox 28 before continuing troubleshooting. Symantec extensions are known to be quite problematic. Please try removing it as it is not needed to run Norton.
    In regards to your bookmarks, no, uninstalling and reinstalling Firefox won't fix the issue and it won't remove your bookmarks unless you specify you want to remove it. There's a check box that says "Remove my personal data" and is unselected by default.

  • Why cant I open any messages or emails from my Hotmail account when using Firefox browser but works fine using IE browser

    When I open my Hotmail account while using Firefox as my browser I am unable to open any email in both Inbox and Junk. I can reload either one and it will sometimes work for a short time. However if I switch to Internet Explorer browser it all works great.

    Had this problem for quite a while but found a work-a-round. I click anywhere in the text I want to delete and insert any character. I am then able to block and delete any text I want to. It's been working great.

  • Flash 11.0 doesnt work on my xoom using firefox browser but does work through the xoom default browser, any fix for firefox?

    flash 11.0 doesn't work through firefox on my Motorola XOOM 3.2.2 Flash 11.0 does work through the basic browser that came with the XOOM. Any fix for this through Firefox?

    Hi,
    This thread is about Flash in Firefox for Mobile: [https://support.mozilla.com/questions/757638 https://support.mozilla.com/questions/757638]
    Jack

  • I have a new macbook and downloaded the firefox browser but i can't open the .dmg file. Window pops up saying not recognized.

    Setting up my new macbook pro and I went to install the firefox download currently available on the mozilla site and I double-click the firefox .dmg download file and a window pops up and says "The following disk images cannot be opened. Firefox20-1.0.dmg. Reason: not recognized.
    Nothing else comes up as an option.
    What should I do?
    Thanks
    Steve

    Hello stevelopez, try download from : http://www.mozilla.org/en-US/firefox/all/
    see also : [https://support.mozilla.org/en-US/kb/install-firefox-mac#os=mac&browser=fx20 Install Firefox on Mac]
    thank you

  • HP C4795 printer will not print in firefox browser but will in IE

    I have an HP C4795 printer and HP windows 7 and the printer will not work using firefox. it works fine in IE. I had trouble with firefox crashing yesterday so i uninstalled and reinstalled and printer won't work. worked fine in firefox before my ordeal yesterday.

    I see you started another question thread - https://support.mozilla.com/en-US/questions/888892 - so I guess your problem isn't resolved.
    If it is trying to print to an XPS file, your printer isn't selected as the destination for print. You need to select you printer in the Printer - Name box. See the screenshot.

  • I followed a thread last night that looked like I could download quicktime streaming server (QTSS) as a free download.This does not now seem possible.wnload.

    Is it possible to obtain quicktime streaming server( QTSS) as a free down load ?Some thread  (from this site) I followed last night turned out to be of no use.

    I've had my 822 since launch and I have had flawless experience with the phone.  Phone works like it should, text messaging and emails work.  I think it does a random reboot about once a month if that.
    I don't know what Nokia or VZW did to the 928's.  It could either be a bad batch of devices they keep recycling to other customers when one sends it back in for being faulty or just poor QA done on the device.
    The only thing I can think of is filing a complaint with the BBB and FCC that VZW keeps issuing faulty devices to their customers.
    Reach out to one of the executives, http://aboutus.verizonwireless.com/leadership/executive/index.html and voice your anger that you are constantly receiving faulty devices.

  • My question is regarding website development,the issue iam facing is Prerender scripts are not working firefox browser but it is in IE and Chrome,What could be the reason?

    My development invironment is Visual studio 2008,version 3.5

    I'm not familiar with Prerender scripts. Is this specific to .Net or is it a general technique?
    For general questions, you can find more web development help on the [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board]. Separate forum, separate registration. Please note the tips in the Sticky Post at the top of the forum before posting.
    If it is .Net specific, you might try Microsoft's forums or other ASP.NET sites.

  • Firefox crashes but the dump has been uploaded, how can I get the dump(Not the raw dump in bugzilla )?

    I meet a problem that firefox happens to crash, but i can not get the dump because it has been uploaded?
    Is there any way I can get the dump(Not the raw dump)?

    This problem is not a pop-up. First of all the problem did not start until Yahoo changed their set up for ads in Yahoo Games.
    Once it did start, the ads do not "pop-up", it is a vertical bar that is there all the time. You cannot get rid of it.
    By the same token, it is not a Yahoo Problem since the problem does not exist using another server.
    Yahoo says it has to do with some add-ons or plug-ins in Firefox that is causing the problem.
    As you can see by the screen picture, one third of the game screen has a vertical ad area. I want to get rid of it.

  • Asp site work local but doesn't work after upload to the server

    I built a ASP site with MS access driven, it works good at my
    local computer but after I upload it to the internet server, it
    failed. I am pretty much sure it's data connection problem, any
    solution anyone,............
    the "conn.asp" inside the "Connections" folder as follow:
    <%
    // FileName="Connection_odbc_conn_dsn.htm"
    // Type="ADO"
    // DesigntimeType="ADO"
    // HTTP="false"
    // Catalog=""
    // Schema=""
    var MM_connRealtor_STRING = "dsn=data_realtor;"
    %>

    I seen other ppl having the same problem, and there is an
    exact topic here at this forum, pls go to the topic "Can't connect
    to access db hosted by Godaddy" I had my problem in detail there,
    pls help if you can..........thx

Maybe you are looking for

  • How to do a POST on HttpsTunneling(referring javawldtip111)

    I have used jsse for https (thur SSL) communication. It suits with our requiremets and we have done with the work and tested successfully. Requiremens ARE, 1.Writing some Message to the webserver(IIS),      and ASP page which resides on IIS will rece

  • Z97 gaming 9 AC bluetooth/wifi module not working

    As the title suggests. Nothing shows up in hardware manager, the module is physically installed OK (redone twice) no bent pins or obvious damage or shorting. Weirdly enough the driver disk doesn't seem to work either, nothing shows in the list to ins

  • ITunes message 'the phone " " is in use by another user on this computer'

    I am receiving the following message when I try to sync my iPhone with iTunes: 'the phone "phone name " is in use by another user on this computer' I believe that this happened as a result of the following: I forced a restore of this phone. When the

  • Twixtor doesn't work

    I import my clip into AE CC. Then I split the clips. I find the part I want to twixtor, and I put it on. I put the speed on 1%. Disable resample and maintane aspect ratio is both off. Time remapping on. and It plays the twixtor on that clip i split b

  • Wrong o/p giving

    Hi Below query is giving different o/p in different versions (I'm trying on both 10g and 11g) On 10g it gives me correct o/p i.e correct tablespace utilisation is giving and 11g is not giving correct o/p. i.e wrong tablespace utilisation is giving Wh