Other Browsers

liunx

Guest
I am using Internet Explorer but a member of mine said that he is using Mozilla firefox and the my website he says that he sees it all messed up. I created this site using HTML.<br />
<br />
I would like to know how can i fix this. If you have Mozilla firefox, please take a look <!-- m --><a class="postlink" href="http://marlinsclubhouse.net">http://marlinsclubhouse.net</a><!-- m --><!--content-->Stop using Front Page because it likes to insert IE only code, and if you don't know what you are doing, it creates crap in a hurry. Is there actually that much white space in your code? That's the most white space I have ever seen and it forced loading of the view source to take a long time. I did a file Save As on the source code and opened the code in my text editor. I got 22,331 lines of code. 22,331! Click on the Doctype link in my sig and read the article. Pick a Doctype and begin to try and validate your site. Validator link is also in my sig. Firefox likes valid pages. After that, go to w3schools and start to learn CSS asap. You will also want to stop using tables for your layout. Here's (<!-- m --><a class="postlink" href="http://www.matts-website.net/sandbox/index2.html">http://www.matts-website.net/sandbox/index2.html</a><!-- m -->) just a basic layout I did for a previous poster. This should give you an idea of what you need to work towards.<!--content-->And quit using JavaScript for the sake of using JavaScript. The following code does what?<br />
<br />
<script language="JavaScript1.1"><br />
<!--<br />
jsVer = "1.1";<br />
//--><br />
</script><br />
<script language="JavaScript1.2"><br />
<!--<br />
jsVer = "1.2";<br />
//--><br />
</script><br />
<script language="JavaScript1.3"><br />
<!-- Begin<br />
jsver = "1.3";<br />
//--><br />
</script><!--content-->Thanks for the tips.<br />
<br />
What do i use in replace of tables?<br />
<br />
Thanks<!--content-->Originally posted by spufi <br />
The following code does what?It's an outdated way to see what version of JavaScript is at your disposal. A much more practical, as well as modern way is to use object detection.Originally posted by AJBurnett34<br />
What do i use in replace of tables?CSS. Check out the links referenced by Matt previously. Moreover, make sure to take careful note of this article (<!-- m --><a class="postlink" href="http://www.hotdesign.com/seybold/">http://www.hotdesign.com/seybold/</a><!-- m -->).<!--content-->alright, but then how does my HTML code of my website now what color to put in?<br />
<br />
what code do i need to put in so that the colors can come out?<!--content-->22000+ lines of page source?!? Is this a record?<!--content-->Wow, whitespace.<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
Everywhere.<!--content-->Originally posted by fredmv <br />
CSS. Check out the links referenced by Matt previously. Moreover, make sure to take careful note of this article (<!-- m --><a class="postlink" href="http://www.hotdesign.com/seybold/">http://www.hotdesign.com/seybold/</a><!-- m -->). [/B] <br />
<br />
CSS? How can i create a website using CSS? isnt that for color and font?<br />
<br />
I want a table or something to replace a table, so i can put links on.<!--content-->its not CSS alone, use XHTML to create a semantic layout, then css to lay it out.<!--content-->Can anyone tell me what this means in the page that matt gave me<br />
<br />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br />
<link rel="stylesheet" title="Default" media="screen" href=http://www.webdeveloper.com/forum/archive/index.php/"default.css" type="text/css" /><br />
<br />
thanks<!--content--><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br />
<br />
Is required for validation as it determines type of content you are sending and the charset.<br />
<br />
<link rel="stylesheet" title="Default" media="screen" href=http://www.webdeveloper.com/forum/archive/index.php/"default.css" type="text/css" /><br />
<br />
This links to my external style sheet where my CSS for the layout is defined. I'm basically saying it's my default style for a media type of screen, where the CSS file can be located at, and what type of content can be found within that file.<br />
<br />
As you start to learn CSS, you will quickly see that defining your CSS externally is by far the ideal way of doing it.<!--content-->Originally posted by AJBurnett34 <br />
CSS? How can i create a website using CSS? isnt that for color and font?<br />
<br />
I want a table or something to replace a table, so i can put links on. <br />
<br />
CSS can do more than that. Again, go to W3schols and do the toturials on CSS. You don't need a table to define your links. A bunch of links are really a list of links. Because of this, you define them in a list tag(ordered/unordered). Check out the Taming Lists article in my sig.<!--content-->
 
Back
Top