Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #284020

    Hello!

    Can you please tell me how to change:

    Text Size and Font
    Remove hover tab/box
    Change hover color
    Add a small line in between post entries
    remove time (keep date)

    in the RECENT POSTS widget in the footer?

    • This topic was modified 10 years, 4 months ago by onegirlrtw.
    #284100

    Hey onegirlrtw!

    – Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .news-headline { font-size: 16px; font-family: arial; }

    – Can you elaborate? A screenshot would help

    strong.news-headline:hover { color: red; }

    #top .news-wrap li { border-bottom: 1px solid #e2e2e2; }

    – I have answered your question on your other topic here – https://kriesi.at/support/topic/how-can-i-delete-the-time-in-the-combo-widget-but-keep-the-date-stamp/#post-284048

    Regards,
    Yigit

    #285033

    Thank you!

    The other question was about the hover text that appears in RECENT POSTS widget links (I would like to remove the hover text).

    #285128

    Shalom!

    Please add following code to Quick CSS as well

    a.news-link {
    pointer-events: none;
    }

    Cheers!
    Yigit

    #285193

    The code works, but it seems to stop each link in the Recent Posts list from being active. Is there any other solution?

    Toda raba!! :)

    #285198

    Hey!

    Please add following code to Quick CSS instead

    strong.news-headline:hover {
    color: #eeeeee;
    }

    Best regards,
    Yigit

    #287732

    With this code, the hover text is now back. The goal is to remove the hover text from the links. Thanks!

    #287787

    Hi!

    Thank you for the update.

    Please post the website URL here. We need to inspect it.

    Cheers!
    Ismael

    #288000
    This reply has been marked as private.
    #288045

    Hey!

    Please flush browser cache and refresh your page a few times. There is no hover color on my end right now :)

    Regards,
    Yigit

    #288048

    Hi Yigit,

    I cleared the cache, but somehow on my end, the hover text is still there (please note: I am referring to the hover text in the yellow box that appears with the hover state).

    Thank you!

    #288100

    Hi!

    Please see screencast here – http://youtu.be/bxsU1GLF8bI

    Best regards,
    Yigit

    #288520

    hover text

    That’s so strange because I am still seeing it after clearing cache! Ok, thanks!

    #288525

    Hey!

    Please add following code to Functions.php file in Appearance > Editor

    function add_custom_script(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a.news-link').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Cheers!
    Yigit

    #288632

    That one did the trick, it’s now working on my end, thank you!

    #288658

    Hi!

    Great! You are welcome :)

    Regards,
    Yigit

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘How to change text size & color and remove hover in Recent Posts widget footer’ is closed to new replies.