So here is the code I used to get the Categories moved to the footer. This bit is under the footer section of my Style.css
.footerlinks ul {
text-transform:uppercase;
display: inline;
color: #FFFFFF;
font-size:10px;
list-style-type: none;
list-style-image: none;
margin:0; }
.footerlinks li, .footerlinks li li, .footerlinks li li li {
display: inline;
padding: 0px 5px; }
.footerlinks ul li a {
color: #FFFFFF !important;
font-size: 10px;
}
and here is the code that is actually in the footer.php
<div id="footer">
Categories:
<ul class="footerlinks">
<?php wp_list_cats(''); ?>
</ul>
Now the problem I have is that it is ignoring any formatting options I apply to the .footerlinks in my Style.css sheet.
I’ve tried using Firebug to track it down but I haven’t had any luck.
Does anyone have any ideas?