Click on image slider

Home Forums Gillion Theme Click on image slider

Home Forums Gillion Theme Click on image slider

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • enter1010
    Participant

    Hello,

     

    On our blog, we currently use your slider to display the most recent articles. However, there’s one thing that has been bothering us and our readers for a while. The only way to get to the article is to click on the tiltle displayed over the image. A normal user would expect to be able to click anywhere on the image, like you do on most sliders, and we’re looking for a way to add this feature to your slider.

    Are you thinking of adding such a feature soon ? Can you show us how we can easily add it to our blog ?

     

    Best regards

    Hi @enter1010,

     

    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

     

    .blog-slider-content > a {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        height: 100%;
        padding-top: 25%;
        width: 95%;
        z-index: 999999;
        cursor: pointer;
    }
    
    .blog-slider-content {
        position: static;
        height: 100%;
    }
    
    .blog-slider-container {
        top: 0;
    }
    
    .blog-slider-item .post-categories-container {
            position: absolute;
            bottom: 170px;
    }
    
    .blog-slider-item .post-meta {
            position: absolute;
            bottom: 35px;
    }

     

    Best regards,
    Shufflehound team

    enter1010
    Participant

    Hi,

     

    We tried implementing your code but unfortunately it cause two problems.

    First of all, on all article pages, the header changed from this (screen 1) to this (screen 2).

    Secondly on our homepage, the slider lost the author, comments, and read time elements (from screen 3 to 4.)

     

    Any idea on how to fix this?

    We have to develop more custom code so instead of this i have created feature request for it so that it will be implemented in the future version of theme.

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