Alright in my footer I have the code
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('a.more-link').wrap('<div class="readmore"></div>');
});
</script>
and in my CSS I have the code
#readmore {
color:#00CC00 !important;
}
However my read more is clearly not green. Have I made an error?
Thanks so much by the way