• Resolved garciaspress

    (@garciaspress)


    Hi there.
    I have several links on my footer, for example “About”, “Contact”, “Legal”..
    However, there is no space between the words. It is driving me crazy. I’ve looked everywhere and I can’t find anything that works. Here what my footer.php looks like.

    `<?php
    /**
    * The template for displaying the footer.
    *
    * Contains the closing of the id=main div and all content after
    *
    * @package aThemes
    */
    ?>
    </div>
    <!– #main –></div>

    <?php
    /* A sidebar in the footer? Yep. You can can customize
    * your footer with up to four columns of widgets.
    */
    get_sidebar( ‘footer’ );
    ?>

    <footer id=”colophon” class=”site-footer” role=”contentinfo”>
    <div class=”clearfix container”>
    <div class=”site-info”>
    © <?php echo date(‘Y’); ?> <?php bloginfo( ‘name’ ); ?>. Todos los derechos reservados.
    </div><!– .site-info –>

    <div class=”site-credit”>
    <a href=”http://noticieroimperio.com”>Legal</a&gt;
    </div>

    <div class=”site-credit”>
    <a href=”http://noticieroimperio.com”>Empleo</a&gt;
    </div>

    <div class=”site-credit”>
    <a href=”http://noticieroimperio.com”>Contactar</a&gt;
    </div><!– .site-credit –>
    </div>
    <!– #colophon –></footer>

    <?php wp_footer(); ?>

    </body>
    </html>`

    Here is the website: noticieroimperio.com
    If you scroll down to the footer, you will see what I am talking about on the bottom right. It is in Spanish but the idea is the same.

    Please help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • This is a CSS issue – try adding this CSS to custom CSS – if your theme does not have Custom CSS, you can use a plugin to add it.

    .site-credit {
        margin: 0 10px;
    }
    Thread Starter garciaspress

    (@garciaspress)

    Worked perfectly. Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘No Spacing Between Links In Footer’ is closed to new replies.