How to Make the Whole Blog Entry clickable

Home Forums Jevelin Theme How to Make the Whole Blog Entry clickable

Home Forums Jevelin Theme How to Make the Whole Blog Entry clickable

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Elise_jansson
    Participant

    Hi,

     

    Is there a way of making more than just the title of a blog item clickable in order to get to the single page? Would prefer the whole image or the whole item box to be clickable (as demonstrated in screenshot).

    NOTE: I’m using the gallery feature without a featured image so the thumbnail is displayed as a slideshow.

     

    If there’s no way of doing this through theme settings or custom css, do you maybe know a plugin that could be of help?

     

    Thanks in advance,

     

    Elise

    Attachments:
    You must be logged in to view attached files.

    Hi Elise,

     

    I hope you are well today and thank you for your question.

     

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    @media (min-width: 851px){
    .blog-list article a.post-title {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        text-align: left;
        padding-left: 400px;
    }
    
    .blog-list article .post-meta.post-meta-one {
        margin-top: 30px;
    }
    }

     

    Best regards,
    Shufflehound team

Viewing 2 posts - 1 through 2 (of 2 total)