Quote:
Originally Posted by tharden3
- How do I design other versions of my website to work in Firefox, Opera, etc.?
Code to web standards. Test in one of those browsers. Will probably work everywhere. Sometimes even IE.
Quote:
- When I get a domain name, do I only need one for all of my versions?
You need one for each site you want someone to access like example.com and example1.com. So two domain names in that case.
Quote:
- Do I need to COMPLETELY redo my HTML/CSS to make my site work in other browsers? Or is it just some minor changes that need to be made?
See above. In most cases, standard and valid markup works everywhere.
Quote:
- Do you
have to pay for a domain name?
Yes.
Quote:
- ****Are there any links you can provide that specifically outline the differences between the standards for developing HTML in IE, FF, and other browsers?****
There are no differences in standards. Everyone follows the W3C pretty good. And then there's IE. The sites I use for checking on problems:
webdevout.com
positioniseverything.net
Validate your markup, both html and css. Invalid markup is markup with errors. You cannot trust markup with errors.
Trust all the browsers to display what you wrote. If there are differences between FF, Opera and/or Safari, then you'll have to look them up.
If they display the same but IE is different, then IE is the problem and you have to look it up.
If IE displays correctly but any of the others are different, then IE is still the problem and your markup is wrong.
Never, ever trust IE to display anything correctly.