Hi Popper, this is the code I had initially tried to paste here, which is what I get when inspecting with firebug light, there are to “copyrights” although only one is displaying the text I want, the one on top is invisible but firebug light points to the same line in the sytlesheet:
<div class="clear"/>
</div>
<div class="copyright"/>
</div>
<div class="copyright">
this is my footer.php
<!– end div.footer –>
<div class=”copyright”>
<!–Footer Text from Admin Options –>
<?php $footertext = get_option(‘bb_footer_text’); ?>
<p class=”tiny”><?php if($footertext != NULL) {echo $footertext;} else {echo ‘
Get a quote. Remove after purchase.’;} ?></p>
</div><!– end div#wrapper –>
<!– ALL JQUERY SETTINGS AND INITILIZATION, Image Carousel, and Form Validation –>
<script src=”<?php echo get_template_directory_uri(); ?>/js/settings.js” type=”text/javascript”></script>
<!– cufon ie fix –>
<script type=”text/javascript”>Cufon.now();</script>
<!– Google Analytics from Admin Options –>
<?php /* get theme color from options */
$analytics = get_option(‘bb_analytics’);
if($analytics != NULL) {echo $analytics;} else { ?>
<script type=”text/javascript”>
var _gaq = _gaq || [];
_gaq.push([‘_setAccount’, ‘UA-19961671-3’]);
_gaq.push([‘_trackPageview’]);
(function() {
var ga = document.createElement(‘script’); ga.type = ‘text/javascript’; ga.async = true;
ga.src = (‘https:’ == document.location.protocol ? ‘https://ssl’ : ‘https://www’) + ‘.google-analytics.com/ga.js’;
var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<?php } ?>
Any ideas what’s going wrong?