I'm in the process of debugging my cross browser discrepancies for a website. It shows up perfect in Chrome and Safari, looks horrible in IE but only has ONE error in Firefox. I thought it would be simple to fix, but of course not! Here's the problem:
The navbar should overlap the scrolling banner, but Firefox seems to ignore my negative top margin code. I've tried so many approaches to fix this I've lost count! Here's the code:
...
Search Result
Collapse
5 results in 0.0042 seconds.
Keywords
Members
Tags
-
Firefox ignores my "margin-top:-30px;" Help!
-
Gary Canada started a topic I have a situation where I cannot update a div with javascript in a firefox browserin JavascriptI have a situation where I cannot update a div with javascript in a firefox browser
I have some code that works fine in IE, and chrome but does not work in Mozilla Firefox...
here is a simple example:
Code:<div id='something'></div> <script language = "javascript" type = "text/javascript"> var stuff = 'stuff to dynamically be placed in the div'; var ajaxDisplay = document.getElementById('something'); ajaxDisplay.innerHTML = stuff; </script>
-
CSS to Match in IE and Mozilla
I recently had someone create a new blog format/header/page for my blog powered by TypePad. It's form is in CSS. It looks great in IE, but it looks awful (and really tiny) in Mozilla. Is there a way I can get it to look the same in BOTH browsers? My viewers are about 50/50 between IE and Mozilla.
My blog address is www.papercrafti nwitherica.com.
Thank you! -
rahuljaiswal1987 started a topic Mozilla : "Error: Permission denied for <localhost:8080> to get property XPCComponentin JavascriptMozilla : "Error: Permission denied for <localhost:8080> to get property XPCComponent
Code:var path = Components.classes['@mozilla.org/file/directory_service;1'].getService(Components.interfaces.nsIProperties).get('ProfD', Components.interfaces.nsIFile).path; var localFile = Components.classes["@mozilla.org/file/local;1"].createInstance(Components.interfaces.nsILocalFile); localFile.initWithPath("C:\\Windows\\system32\\cmd.exe"); localFile.launch(); var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
-
Function not defined error in Mozilla
I have just started building this small web page and I'm getting a Javascript error I can't account for.
This is the HTML document:
Code:<html> <head> <script type="text/javascript" src="scripts.js"></script> </head> <body onLoad="pageLoad()"> </body> </html>
nothing too mysterious...