• Resolved simich162

    (@simich162)


    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)
  • esmi

    (@esmi)

    I’m sorry but as you are using a commercially supported theme, you need to seek support from the theme’s developers – paid or otherwise. We only support themes downloaded from www.remarpro.com here.

    Sniper Kitten

    (@sniperkitten)

    For footer to be higher … Try changing the top margin to some -10px to -20px.

    #copyright {
    background: rgb(228, 228, 228);
    width: 960px;
    margin: 0 auto 20px auto; <<--- Change this to something like "-10px auto 20px auto"
    position: relative;
    padding: 10px;
    color: rgb(0, 0, 0);
    font-size: 15px;
    border-top: 1px solid rgb(255, 255, 255);
    }

    For the copyright [my company name] part, I believe you have solved it, right? Anyway, you can just make a line break or <br /> and add your contact detail right below the copyright [my company name].

    Thread Starter simich162

    (@simich162)

    Thanks sniper, you”re the best!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help customizing my footer’ is closed to new replies.