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?
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
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).
Shalom!
Please add following code to Quick CSS as well
a.news-link {
pointer-events: none;
}
Cheers!
Yigit
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!! :)
Hey!
Please add following code to Quick CSS instead
strong.news-headline:hover {
color: #eeeeee;
}
Best regards,
Yigit
With this code, the hover text is now back. The goal is to remove the hover text from the links. Thanks!
Hi!
Thank you for the update.
Please post the website URL here. We need to inspect it.
Cheers!
Ismael
Hey!
Please flush browser cache and refresh your page a few times. There is no hover color on my end right now :)
Regards,
Yigit
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!
That’s so strange because I am still seeing it after clearing cache! Ok, thanks!
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
That one did the trick, it’s now working on my end, thank you!