Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #3214141
Blog timeLine
Closed

Comments

  • gskmac started the conversation

    Hello , Hope you are well

    I insert a blog timeline with 5 posts on my page

    But I would like to remove the links for each post

    How can I do that ?

    thanks for your help


    Attached files:  Screenshot 2023-01-23 at 12.56.38.jpg

  •  7,092
    Oliver replied

    Hi,

    Can you give me link to this page?

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • gskmac replied

    the site is not online yet

  • gskmac replied

    Also How to remove the post time and post date in responsive mode iPhone


    I tried this but doesnt work

    @media (max-width: 767px)

    .blog-style-timeline .post-time,

    .blog-style-timeline .post-date {

    display: none;
    }

    Thanks

    Attached files:  Screenshot 2023-01-23 at 15.15.06.jpg
      Screenshot 2023-01-23 at 15.15.13.jpg

  • gskmac replied

    I mean 

    @media ( max-width: 767px ){
    .blog-style-timeline .post-time {
    display: none;
      }
      
    .blog-style-timeline .post-date {
    display: none;
    }
    }


  • gskmac replied

    ok for the time and date ,  I just add  !important and it works

    so my 1st question is still a problem for me 

    blog timeline with 5 posts on my page

    But I would like to remove the links for each post 


  •  7,092
    Oliver replied

    HI!

    Try this one:

    .blog-style-timeline article {
        pointer-events: none;
    }

     

    3938581396.jpg

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • gskmac replied

    ok I found a solution


    .blog-style-timeline .post-info-wrap {
      pointer-events: none  !important;
      }
    .blog-style-timeline .post-title{
        pointer-events: none  !important;
      }
    @media ( max-width: 767px ){
    .blog-style-timeline .post-info-wrap {
      pointer-events: none  !important;
      }
    .blog-style-timeline .post-title{
        pointer-events: none  !important;
      }
     }


  •  7,092
    Oliver replied

    Hi,

    As a workaround with 1 line:

    .blog-style-timeline *{
        pointer-events: none;
    }

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver