Hi everyone i have a problem with browser (other then IE). I have created a web page for my school project, but i found that the page only likes IE, Mozilla, and opera don't like to run it. for example (minor problem) ,
<--Back to previous page......
copy it and save it as .html.
It works in IE but mozilla display it wrongly, tell me if yours works fine. The worse thing is that i have problem in calculation page in mozilla, IE works fine, Please help me to locate the problem. Is it because of the browser or my bad programming practices. Thanks in advance.
Page 1 of 1
IE Vs !IE
#2
Posted 05 March 2004 - 01:48 PM
mhhh.... i tried but i don´t know if it´s good
the only thing that was displayed was : Back to previous Page with big
fonts at beginning of the word and everything was underlined
i use FireFox 0.8
but the bigger fonts are underlined but not in one row with the smaller fonts
on IE everything was underlined in one row and the beginning fonts are bigger
but locate the prob u should wait
i never did something like that , sorry
the only thing that was displayed was : Back to previous Page with big
fonts at beginning of the word and everything was underlined
i use FireFox 0.8
but the bigger fonts are underlined but not in one row with the smaller fonts
on IE everything was underlined in one row and the beginning fonts are bigger
but locate the prob u should wait
i never did something like that , sorry
#3
Posted 05 March 2004 - 04:36 PM
That is what i want to say, is someone here expert in Javascript?
Last time i didn't like IE that much, but for now, i think IE is a Max Compability browser, and the mozilla is a good in feature and speed.
Anyway is any javascript expert here?
Last time i didn't like IE that much, but for now, i think IE is a Max Compability browser, and the mozilla is a good in feature and speed.
Anyway is any javascript expert here?
#4
Posted 06 March 2004 - 07:07 AM
1) use stylesheets to change link color, not java script:
<style>
a{color:820183}
a:hover{color:ff0000}
</style>
or, if you only want it for that one link:
<style>
.mylink{color:820183}
.mylink:hover{color:ff0000}
</style>
...
<a href="any.html" class="mylink">blah</a>
2) don't use inside , it's bad.
3) use double-quotes around attributes in tags.
<style>
a{color:820183}
a:hover{color:ff0000}
</style>
or, if you only want it for that one link:
<style>
.mylink{color:820183}
.mylink:hover{color:ff0000}
</style>
...
<a href="any.html" class="mylink">blah</a>
2) don't use inside , it's bad.
3) use double-quotes around attributes in tags.
#5
Posted 06 March 2004 - 07:26 AM
I recommend to avoid deprecated elements like completely. Use stylesheets instead.
Example:
example text
Using this list of fonts for a Verdana-like font display ensures maximum compatibility across different computer platforms. For instance Linux has no font Verdana. It would default to a serif font similar to Times New Roman if you don't note down the other fonts, too, thus changing the look of the page. Using px as measuring unit ensures that the font size will be the same on every system regardless of the used DPI setting (which varies across different computer platforms).
Example:
example text
Using this list of fonts for a Verdana-like font display ensures maximum compatibility across different computer platforms. For instance Linux has no font Verdana. It would default to a serif font similar to Times New Roman if you don't note down the other fonts, too, thus changing the look of the page. Using px as measuring unit ensures that the font size will be the same on every system regardless of the used DPI setting (which varies across different computer platforms).
#6
Posted 06 March 2004 - 02:05 PM
Yeah, CSS is a great techniques, i admit it, but the project that i am doing is javascript, that is why i need to used all javascript if posible for high marks.
Anyway thanks for the opinion, I think i have calculation problem solved already.
Anyway thanks for the opinion, I think i have calculation problem solved already.
#7
Posted 06 March 2004 - 03:19 PM
But I wouldn't use JS for such somewhat silly functions, because it's simpler implemented with stylesheets or even normal HTML. If you want JS mouseover effects for links, use a graphic link. Then it would totally make sense to use JS in this situation, and also looks much better. It's also much more code, so much better grades.
Share this topic:
Page 1 of 1
Help











