I am trying to figure out how to make my sidebar dynamic so that I can install some widgets. I have found a lot of HTML directions, but my code is in CSS, and my theme doesn't have a functions.php or a sidebar.php file.
Here is the sidebar code I can find on the styles.css sheet:
#sidebar ul {
list-style-position: outside;
list-style-type: none;
margin-left: 0px;
padding-left: 15px;
}
#sidebar li {
list-style-position: outside;
list-style-type: none;
color: #BFB12A;
}
#sidebar li li {
list-style-position: outside;
color: #BFB12A;
}
#sidebar a {
list-style-position: outside;
color: #BFB12A;
text-decoration: none;
}
#sidebar a:hover {
list-style-position: outside;
color: #BFB12A;
text-decoration: underline;
}
#sidebar h2 {
font-family: arial, verdana;
font-size: 12px;
color: #B02B26;
text-transform: uppercase;
margin-bottom: 2px;
}
Is there a way I can make my sidebar dynamic using this code?
PS. My site is rockersnyc.com/blog, and I am trying to add an "authors" widget...