Feeling stumped. Here is the CSS code I am using:
<style = "text/css">
.sidebar_qustions {padding: 10px; background-color: Green;}
div.sidebar_qustions {padding: 10px;}
DIV.sidebar_qustions {padding: 15px;}
DIV .sidebar_qustions {padding: 20px;}
ul.sidebar_questions_outer { list-style: none; margin: 0px; color: Red;}
ul.sidebar_questions_inner { list-style: none; display:inline }
li.sidebar_questions_inner { display:inline; padding: 5px; }
</style>
However, even with this code in place, the styling for the sidebar_questions DIV does not seem to be working:
<div id="sidebarwrapleft">
<div id="sidebar">
<div class="sidebar_questions">
I tried different ways of applying styles to the div element as shown above, but none of them seem to work. Is it actually possible to apply a style to a DIV element?
If you have any insights, please share.