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
Hi!
Please deactivate all active plugins and re-create post slider and check if that helps.
Cheers!
Yigit
Tried your suggestion and it didn’t make a difference.
Any other ideas?
Thanks for your help Yigit.
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
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.