Hide article titles on featured news tiles

Home Forums Magazine Point Pro Hide article titles on featured news tiles

  • This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #10022
    Anonymous
    Inactive

    Hi.

    On my homepage, is there anyway to change the text on the thumbnails?

    I want the homepage to just show the featured image and for the title of the article to appear once you hover over it.

    Is there any code to facilitate this?

    #10048
    Axle Support
    Moderator

    Hi @Fraser,

    The theme does not have this feature (show only featured image and display title on hover) by default. We believe you can achieve this by adding custom CSS.

    #10055
    Anonymous
    Inactive

    Hi I am not well versed with CSS. Is there code you could advise I use?

    #10060
    Axle Support
    Moderator

    Hi @Fraser,

    Can you please provide us your site URL?

    #10385
    Anonymous
    Inactive
    #10387
    Axle Support
    Moderator

    Hi @Fraser,

    Please go to Appearance > Customize > Additional CSS and add following CSS

    #featured-news .featured-news-text-content{
        display: none;
    }
    
    #featured-news .featured-news-item:hover .featured-news-text-content{
        display: block;
    }

    We hope it will work as you wish.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.