I agree, the CSS does say it’s already right aligned, however when I change this to left or even change the font-size and refresh the site it’s doesn’t affect it.
You can see the project website via this link – http:/www.paradigm-secured.com
I just want to be able to display the company name and copyright info in the footer.
I have tried amending the text in the ‘Footer’ box within the Theme Options General tab in the theme settings. However nothing changes.
From Theme functions –
// Display Credit Link Function
function themezee_credit_link() { ?>
<?php _e(‘? 2012 Company Name’, ‘themezee_lang’); ?>
<?php
}
===
From Footer.php
</div>
<div id=”footer”>
<div id=”foot”>
<?php
$options = get_option(‘themezee_options’);
if ( isset($options[‘themeZee_general_footer’]) and $options[‘themeZee_general_footer’] <> “” ) {
echo $options[‘themezee_credit_link’]; }
?>
<div class=”themezee_credit_link”><?themezee_credit_link(); ?></div>
<div class=”clear”></div>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>
===
From CSS – It says ‘right’ but it’s not. Also the size doesn’t change when this is amended.
.credit_link {
float: right;
font-size: 0.6em;
}
.credit_link a {
text-decoration: none;
}