PDA

View Full Version : Dreamweaver version 6 drop down menu problem in Firefox


chayy013
06-20-2008, 02:50 AM
Dreamweaver version 6 drop down menu problem in Firefox

Can someone please help me with this problem? Firefox can’t have activeX running and my website is based on activeX. The menu bar doesn’t work at all in FireFox or other web browsers at all other than explorer. How can I make my website compatible across to all different web browsers?

Many thanks,

Nick

bazz
06-20-2008, 03:22 AM
Welcome to CF.

Can you post some code so we can have an idea of what you're doing.


bazz

chayy013
06-22-2008, 11:25 AM
Oh thankyou! thankyou! for even reply to my post. I truly need help in here.
:(

Here is my htm file

I have remove it from my post and will give you my website.

bazz
06-22-2008, 03:44 PM
HI,

Can you edit your post and put the code inside [ code ] [ / code ] tags. (without the spaces).

have you got the page online? if you can post a link, it will make it easier for me to see what it looks like and to help get you a x-browser solution.

bazz

chayy013
06-23-2008, 12:41 AM
ooops! I will try again

bazz
06-23-2008, 12:43 AM
Well if you must.

The reason why I asked you firstly, to put up your code was so I could see it. However, it is I think, unnecessarily verbose and if I were to see the page online somewhere, I could try to put together a simpler menu solution.

bazz

chayy013
06-23-2008, 12:48 AM
I am new here and I need to learn how to modify, or delete a post. Just give me a minute please.

bazz
06-23-2008, 12:50 AM
Thats OK, just click on the edit button below the post you want to edit.

bazz

chayy013
06-23-2008, 01:09 AM
I don't have a test site and now I have. I just set up one. Here it is

http://chayy013.cloud.prohosting.com/

Many thanks for your help
Nick

oesxyl
06-23-2008, 03:05 AM
I don't have a test site and now I have. I just set up one. Here it is

http://chayy013.cloud.prohosting.com/

Many thanks for your help
Nick
try to validate it first:

http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fchayy013.cloud.prohosting.com%2F

one problem I see is that attributes value must be quoted.

regards

chayy013
06-23-2008, 04:26 AM
Can I ask you what is wrong with this code?

for(var i=0; i<bar.length; i++)

In the validation website, it said:
Line 21, Column 30: character ";" not allowed in attribute specification list.
for(var i=0; i<bar.length; i++) {

Nick.

chayy013
06-23-2008, 04:58 AM
Please help!!!

I can't find any fault but it still says I have 64 errors. I can't see for myself.

http://validator.w3.org/check?uri=http%3A%2F%2Fchayy013.cloud.prohosting.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0&verbose=1

oesxyl
06-23-2008, 05:01 AM
Can I ask you what is wrong with this code?

for(var i=0; i<bar.length; i++)

In the validation website, it said:
Line 21, Column 30: character ";" not allowed in attribute specification list.
for(var i=0; i<bar.length; i++) {

Nick.
the validator guess that is html there, :)
you must hide javascript using comments:


<script type="text/javascript">
//<!--
....your js code here...
//-->
</script>


regards

oesxyl
06-23-2008, 05:19 AM
Please help!!!

I can't find any fault but it still says I have 64 errors. I can't see for myself.

http://validator.w3.org/check?uri=http%3A%2F%2Fchayy013.cloud.prohosting.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0&verbose=1
usualy the number of reported error is grater then real because some of them trigger more error/warning messages.
always start from the top, first reported -> first fixed.

regards

chayy013
06-23-2008, 05:58 AM
Oops silly me! Now I have another problem. How can I use CSS to ignore case when I am in a strict XHTML?

Many thanks!!!!!

oesxyl
06-23-2008, 06:15 AM
Oops silly me! Now I have another problem. How can I use CSS to ignore case when I am in a strict XHTML?

Many thanks!!!!!
do you mean upper case in tags and attributes names?
this have nothing to do with css, you must change them not ignore.

regards

chayy013
06-23-2008, 07:10 AM
<div id="Bar1" class="Bar" menu="menu1" cmd="aboutUs.htm">

I didn’t write the above code but could like to ask you that in the div tag, I know menu and cmd are not the valid attributes but why people put them there. I need these attributes for my pull down menu. How can I go about this? :(

Hi I am not the only one to have this problem. Please look at this website http://bytes.com/forum/thread90799.html

oesxyl
06-23-2008, 07:41 AM
<div id="Bar1" class="Bar" menu="menu1" cmd="aboutUs.htm">

I didn’t write the above code but could like to ask you that in the div tag, I know menu and cmd are not the valid attributes but why people put them there. I need these attributes for my pull down menu. How can I go about this? :(
can solve this only if you use another menu or modify this. I suggest you first method because I think you can find easy on the net something to fit your need.

regards

chayy013
06-23-2008, 08:25 AM
Do you have something you can recommend?

I wonder without on the online help from someone like you, I think life is pretty harsh.
:thumbsup:

oesxyl
06-23-2008, 08:35 AM
Do you have something you can recommend?

I wonder without on the online help from someone like you, I think life is pretty harsh.
:thumbsup:
I never use this but was twice recomended, as far I know, on this forum and I read few times about:

http://www.cssplay.co.uk/menus/

regards

chayy013
06-23-2008, 08:44 AM
Many, many thanks!!! I have learnt quiet a fair bit today on validation and other things. Thanks for you guidance!

:thumbsup:

oesxyl
06-23-2008, 08:48 AM
Many, many thanks!!! I have learnt quiet a fair bit today on validation and other things. Thanks for you guidance!

:thumbsup:
you are wellcome any time, :)

regards