CSS and cold fusion

Dorn's picture

They have: 42 posts

Joined: Jul 2001

I have a site in development that is using cold fusion and CSS.
My problem is that when I apply a CSS atribute to a form that is using CF to pull from a database it messes thing up in Netscape 4.75. For example there will be a drop menu that is set up like this:

Choose state

#Abbrev#

When this is displayed in Netscape it show ALL of the results in the quiry rather than like a normal dropdown.

My questions are
[=1]is the above code OK?
[/=1]

    Is there a known issue with CSS, ColdFusion and Netscape?

Thanks for the help.[/]

They have: 19 posts

Joined: Jul 2001

Well what is your desired output? CSS doesn't affect CF at all, it only affects the resulting HTML.

Let's say you wrote this:

Choose state

#Abbrev#

You would get the exact same results as with the CSS attribute.

Now what do you mean you get "all the results"? If your query has 50 records, then your output should be

Choose state

#query[1]#
#query[2]#
#query[3]#
....
....
....
#query[49]#
#query[50]#

Is this what you get or do you get when you view the source code in your browser? Or does the browser display plain text of all these options where a drop-down should be like this:

#query[1]##query[2]##query[3]##query[4]##query[5]# ...

But the source code looks normal?

If this is the case, then your is not within your . Netscape is very picky about this.

Dorn's picture

They have: 42 posts

Joined: Jul 2001

I have checked and the is in the form.
However the latter example that you gave is what happens only when the CSS is appled. The form works as it should with no CSS.
?? Netscape is am odd thing.

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.