thisisedie, thank you for your help!
<form id="categories"
This tag is calling for an ID. You will need your CSS to reflect the same ID.
form.categories {
This CSS is calling for a class, not an ID. The CSS should say
form#categories {
and not
form.categories {
get rid of the “form” text in front of your CSS is this doesnt work.
Well, change the CSS to call the ID of the tag, not the class.
form#categories {
}
or change your XHTMl form tag to say
<form class=”categories” …>
In other words, you CSS is not being called by from the XHTML.
James,
About 10min after posting the message, it started working again. I did try clearing out my cache with no success. Very strange indeed. Thanks dude.