Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #202198

    I have a post slider on the bottom of my home page and I recently noticed that the title and excerpts have disappeared below the posts. I checked to make sure that them slider was set to show the title and except, seems ok.

    I did notice that on my test system that has IE11, it does display the title, but not the excerpts. In IE10, Chrome and Firefox, I see no title or excerpt.

    Thanks

    #202200
    This reply has been marked as private.
    #202364

    Hi!

    Please deactivate all active plugins and re-create post slider and check if that helps.

    Cheers!
    Yigit

    #202636

    Tried your suggestion and it didn’t make a difference.

    Any other ideas?

    Thanks for your help Yigit.

    #203181

    Hi!

    This css in your child theme is causing the height to be smaller than the content:

    /*About page content slider adjustments*/
    .avia-content-slider-inner .image-overlay { display: none!important; }
    .avia-content-slider-inner { height: 190px!important; }
    body .aligncenter { padding: 10px 0!important; }

    Specifically the .avia-content-slider-inner { height: 190px!important; }. If you only want that on your “about” page you should add the page id as a selector like this:
    #top.page-id-2408 .avia-content-slider-inner { height: 190px!important; }

    Also as a general tip you don’t need to have a separate media query for each line in your css, you can have a single query and then all the css declarations inside of it.

    Cheers!
    Devin

    #203310

    Devin,

    That fixed my post slider issue. Thank you.

    Could you possibly give me an example of how to consolidate my media queries?

    Thanks again for your help.

    #203594

    Hey!

    You can use it as following

    @media only screen and (min-width: 767px) and (max-width: 989px) {
    .avia-promocontent { margin-right: 0px; }
    .av_promobox .avia-button { right: 59px; top: 75%; }
    }

    Best regards,
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Post Slider Issue’ is closed to new replies.