Help customizing my footer
-
Hey,
I need a bit of help customizing my footer text and and the height of my footer.
I like it to be a bit higher but I cant find that value. Do I just add it next to width or what? Also, where it says “copyright 2013”, I’d like for it to say copyright [my company name] and maybe some contact details. Where do I add that text?
I did manage to change the color of the footer and the font size but that’s about it.
Here’s the footer.php and css. And my website is stepford.se if that helps. Thanks!!!
footer.php
<?php global $options; foreach ($options as $value) { if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_option( $value['id'] ); } } ?> <div class="clear"></div> </div><!-- /container --> </div><!-- /wrap --> <div id="copyright"> ? <?php the_time('Y') ?> <?php bloginfo('name'); ?> <?php if ($xs_disable_social_links == "true") { ?> <?php } else { ?> <ul id="social"> <li><a href="https://www.twitter.com/<?php echo $xs_twitter ?>" title="Twitter"><img src="<?php bloginfo('template_url'); ?>/images/twitter.png" alt="Twitter" /></a></li> <li><a href="<?php echo $xs_facebook ?>" title="Facebook Page"><img src="<?php bloginfo('template_url'); ?>/images/facebook.png" alt="Facebook" /></a></li> <li><a href="<?php echo $xs_feed ?>" title="Feed"><img src="<?php bloginfo('template_url'); ?>/images/feed.png" alt="Feed" /></a></li> </ul><!-- /social --> <?php } ?> </div><!-- /copyright --> <?php wp_footer(); ?> </body> </html>
css
/************************************************************************************ Copyright ************************************************************************************/ #social{position:absolute; bottom:10px; right:20px; margin:0; list-style:none} #social li{float:left; margin:0 0 0 6px} /************************************************************************************ Copyright ************************************************************************************/ #copyright{background:rgb(228, 228, 228); width:960px; margin:0 auto 20px auto; position:relative; padding:10px; color:rgb(0, 0, 0); font-size:15px; border-top:1px solid rgb(255, 255, 255)} #copyright p{margin:0} #copyright a{color:#999} #copyright a:hover{color:#FFF} #back-to-top{position:absolute; right:10px; bottom:10px; font-size:11px}
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Help customizing my footer’ is closed to new replies.