My webpage does not show on Firefox, but it does on other browsers

I have a personal website, http://www.kryshu.com that I have created myself on Dreamweaver. I have 7 pages and all except one appear on Firefox. Everything was fine until a couple of months ago when I updated some of the pages, again on Dreamweaver. All of a sudden my 'Portfolio - images' page does not show anything. It is empty - blank. It had text and images. I reloaded several times but each time the 'Portfolio - images' page is blank.
This happened only on Firefox. On Internet Explorer and Chrome the page works fine.
So, I presume the problem is with Firefox. What should I do?

The content is on the page, but is shifted down considerably.
Looks that this is caused by a simple typo: height="790%" instead of height="790" for one of the tables that causes all content to get shifted down.
<pre><nowiki><table width="672" height="790%" border="0" cellpadding="0" cellspacing="0"></nowiki></pre>

Similar Messages

  • I can not print from Firefox, but can from all other browsers and applications (such as MS Word, notepad, etc.). I get a print error on the printing monitor like it's a spooling problem.

    This is a recent development but I can not print anything from within Firefox. The print functions open normally, it is going to the correct printer which works..I can print from other browsers and applications. It acts like it is spooling and then a print error occurs and it won't print. I closed and reopened Firefox, opened it in safe mode, cleaned out history/cache/cookies, and rebooted twice. Nothing makes any difference. Also tried printing from the print preview which had the same result. I can print from all other browsers and applications without a problem so it must be within Firefox.

    See this: <br />
    http://kb.mozillazine.org/Problems_printing_web_pages

  • Youtube videos suddenly will not show in IE, but are fine in other browsers

    I did an update to my website, didn't like it and backed the changes out. When I tested it in Oera, Firefox, Chrome, Safari, the two Youtube videos on my home page render fine, but when I look at the page in IE 7 or 9 I get the red X. Any ideas. The chnage I made that I backed out was my Twitter feed. I thought maybe changing the the left sidebar width affected the videos in the content are, but I have played with the sidebar width and to no avail. Any advise would be greatly aprreciated. Here is the URL:
    www.classproduce.com

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • A div in a site am developing is not showing in firefox but shows on all the other browsers (chrome, safari, opera and explorer), can anyone help?

    i am developing a site and i used divs in making the arrangements.
    all other divs on the page shows but on particular one does not show.
    i gave all the divs a border with a red color, all the other browsers(explorer, opera, chrome and safari ) shows the divs with the colors but firefox does not even show the red color

    Can you post a test case demonstrating the problem? It doesn't need to contain confidential content or active links. (This forum doesn't handle raw HTML very well, so I don't recommend pasting code here unless you convert your angle brackets to HTML entities.)

  • Photobucket images do not show on Firefox but do so on Safari.

    The photobucket website will not display my photos that I've downloaded. This is only a problem with Firefox. Safari has no issues with this.

    See [[Images or animations do not show]]

  • Some logins don't work in Firefox but do work in other browsers

    I have a couple of sites that the logins don't work when I use Firefox but work perfectly if I use another browser such as Chrome or IE. I have tried uninstalling and reinstalling firefox including reinstalling back levels but nothing works. Any suggestions?

    In what way are those sites not working?
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Also check the cookies exceptions to make sure that you aren't blocking cookies.
    If clearing cookies doesn't work then it is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookie files like <b>cookies.sqlite-journal</b> in the Firefox Profile Folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Youtube has no page style in Firefox, but works on all other browsers.

    Since yesterday I have not been able to use Youtube. Not only does the site itself have no page style, but Youtube videos embedded on other sites don't show up either. Youtube works fine on the other browsers I've tried (IE, Chrome, and Opera). I've already checked, I don't have page styles disabled for Youtube.
    == URL of affected sites ==
    http://youtube.com

    I have no idea what you're asking. How do I find out?

  • Layout not working in IE but fine in all other browsers?

    Hi,
    I'm probably missing something very simple, but can anyone shed some light on as to why the a coloumn keeps jumping in IE but works & looks as it should in all other browsers.
    The link to the page in question is below, I have tried fixing the width and even rebuild the page but all to no avail.
    http://www.gecodesigns.com/test/touringsport/football-tours.html
    Many thanks
    Alex

    First thing - all webpages should have a doctype.  Yours doesn't.  Add one that is consistent with the code you have already used on the page (looks like HTML 4.01 Transitional).  This will prevent browsers from rendering the page in quirks mode (a bad thing).
    Second - don't use commas or spaces in file/pathnames:
    background-image: url(images/Touring%20Sport%20-%20Sports%20Tours,%20Schools%20Tours%20and%20Corporate%20To urs.jpg);
    Third - when you specify a font, do it as a family, not a single font.  In your case, a computer that doesn't have Helvetica will default to Times New Roman, which is probably not what you intended:
    .Contact_Header {
    font-family: Helvetica;
    Fourth - justified text is not very satisfactory on the web, and is harder to read than non-justified text:
    .Main_Text {
    font-family: Helvetica;
    color: #666;
    text-align: justify;
    Finally, in addition to these things, wonky code is the cause of your problems.  Here is the validation report for this page - there are many things there that need to be fixed -
    http://validator.w3.org/check?uri=http%3A%2F%2Fwww.gecodesigns.com%2Ftest%2Ftouringsport%2 Ffootball-tours.html&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent= W3C_Validator%2F1.2
    Also, read this about the impact of using col- and rowspans the way you have in your layout tables -
    http://www.apptools.com/rants/spans.php

  • Why are the tabs on bank sites no longer useable on Firefox but they are on other browsers?

    The tabs for moving from one area of the bank statement to another, such as "Pay Bills" or to "Sign Off" no longer work through Firefox. They did previously, and still do using another browser.
    I would like to continue using Firefox but will be forced to use another browser if the of moving around on a site is no longer possible with Firefox.
    What's causing it?

    First, calm down. No need to throw a rampage. Go to options > Security: Under passwords make sure remember passwords is checked. If it is go to saved passwords, find the websites in question delete them and then re-enter your login info. It seems that another Firefox profile has been created on your machine, I would suggesting clicking on one to see if it is your original profile if not, then choose the other. Please read this article. (https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles)

  • Accordion Spry not collapsing in IE but it is in other browsers even Chrome

    This is my first Accordion Spry that I am creating and I
    cannot figure out why it is not
    fully collapsing in IE but it is working flawlessly in all
    the other browsers.
    Pleease check out the site,
    http://www.enrieap.com/. The
    accroding is on the right.
    Thank you.

    If the above didn't help then please attach a screenshot.
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.

  • Why does Google maps not render "Earth view" properly in Firefox, but works fine in other browsers?

    I've been using firefox forever, use it with google maps, mostly with earth view and suddenly, it shows a diagonal mirror image of the map from the bottom right corner to the top left. Google maps in Chrome works fine and maps in Google Earth also work fine.

    We are aware of this issue and will be releasing a Firefox 37.0.2 to correct this within a day or so :)

  • Cannot log in to Twitter on Firefox, but login works in other browsers and in Firefox on other computers?

    I have contacted Twitter support about this, and so far they are stumped. Firefox is my preferred browser. I tried clearing my cache and clearing my cookies, but the login still does not work. I also experimented with http:// versus https:// for logging in, but it still does not log me in. Here is a screen capture of the issue:
    http://www.screenr.com/tkM8

    make sure that your cookie settings in preferences > privacy allow twitter.com to create new cookies & that it isn't blocked by the LeechBlock extension that you've installed

  • Are you kidding us? My passwords don´t work anymore with Firefox, but they do with other browsers! What a shame!

    I have 4 e-mail accounts and I always relied on Firefox because I just love it. All of a sudden, a few hours ago, all my accounts have become inaccessible on Firefox. When I tried to login I was received with a window entitled "Firefox - Choose User Profile" giving one of 2 choices "default - (13 digits)" and "default - (13 others digits)". None of them is known to me and no explanations were given as to what would happen if I choose the one or the other. My blind choice gave me a horrific experience: I have become totally unknown to Firefox and all my data is gone!
    Well, it´s OK with me if Firefox wants to quit business, but why in such a rude way to us who trusted you?
    It is fully possible to access all my accounts with any other browser, but all my data, my favorites, my routines are gone!
    It needs a very convincing apology for me to go back to Firefox.
    Even if this is an accidental failure, it will be hard to trust you again. I am loosing much time and must re-organize myself and my mail. You cannot imagine what this will cost me!
    How can you do this?

    First, calm down. No need to throw a rampage. Go to options > Security: Under passwords make sure remember passwords is checked. If it is go to saved passwords, find the websites in question delete them and then re-enter your login info. It seems that another Firefox profile has been created on your machine, I would suggesting clicking on one to see if it is your original profile if not, then choose the other. Please read this article. (https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles)

  • I cannot save a .vcf file in Firefox but I can with other browsers

    When I click in a link that points to a .vcf file Firefox will not save it in the .vcf format. This links works fine with IE.
    == This happened ==
    Every time Firefox opened
    == When I tried to download a vCard file.

    Hello Allen.
    I don't think Firefox supports the vCard format by default... But you may want to try this extension, as I think it's what you want:
    https://addons.mozilla.org/en-US/firefox/addon/6204
    I hope this helps.

  • My bookmarks are not saving in Firefox, they will save in other browsers. Any tips why?

    Nothing happens when I go to save, or "bookmark" a website. It stopped asking me what folder, and it does not even save in a general list. I'm considering switching browsers.
    '

    It is possible that anti-virus software is corrupting downloaded files or is otherwise interfering with downloading files.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See:
    *http://kb.mozillazine.org/Unable_to_save_or_download_files
    *browser.download.manager.scanWhenDone

Maybe you are looking for