Currently, I am struggling with organizing my unordered list elements to be stacked side by side. The style rule I have been using is as follows:
#slide ul,li{
float:left;
list-style-type:none;
}
Now, I am attempting to introduce another unordered list that should stack on top of each other without any list-style-type. To accomplish this, I have implemented the following code:
.stack ul,li{
list-style-type:none
}
Unfortunately, the styles applied to the "stack" class for ul and li elements are not taking effect. Instead, the elements continue to stack next to each other like they do in the case of ul and li under #slide.
If you'd like to see it in action, check out this example on jsFiddle:
Could it be that my selectors are incorrect?
P.S: I have experimented with both classes and IDs, trying different combinations of both, but unfortunately, the result remains the same.