• Closed
  • Leo Mürz
    Spectator
    February 26, 2016 at 10:05 am #24709

    Hello,

    I am using the text widget for a full-width single footer.

    The Code inside is as follows:

    <p>
    JERRA GmbH <br>
    Heinrich-Barth-Straße 15 <br>
    D-66115 Saarbrücken<br>
    </p>

    <p>
    Telefon: +49 (0) 681 859 19 -0 <br>

    Fax: +49 (0) 681 689 19 -29 <br>
    </p>

    Web: http://wp.jerra.de/wordpress

    <hr>

    <div id="textbox">
    <p class="alignleft">
    <a href="http://wp.jerra.de/wordpress/support/kontakt/">Kontaktformular</a></p>
    <p class="alignright">
    <a href="http://wp.jerra.de/wordpress/impressum">Impressum </a>
    &nbsp;&nbsp;
    <a href=" http://wp.jerra.de/wordpress/datenschutz">Datenschutz</a>
    </p>
    </div>

    <div style="clear: both;"></div>

    As you can see I am using standard anchor tags for the Links.

    Some of them are floated to the Left, some floated to the right, then the float is cleared.

    The floating seems to have destroyed the hover animation in some weird way, as you can see on

    http://wp.jerra.de/wordpress/

    (Scroll down to the Footer Section)

    My most favorite Option would be to simply turn these footer-link animations off in general.

    Is there an easy fix?

    Best Regards!

    Denzel Chia
    Moderator
    Posts: 2656
    February 27, 2016 at 2:16 am #24733

    Hi,

    Use the following in your Theme Options -> Custom CSS

    .footer-widgets ul li a:hover {
    padding: 0 !important;
    }
    .footer-widgets a:hover {
    padding: 0 !important;
    }

    Thank you

    Leo Mürz
    Spectator
    Posts: 5
    February 28, 2016 at 11:31 pm #24789

    Worked for me! Thx!

    Denzel Chia
    Moderator
    Posts: 2656
    February 29, 2016 at 12:20 am #24791

    You are welcome!