I have XTheme Ethos installed and like the presentation of my blog list when the filterable index is turned on. I don’t like how that options places “ALL / GENERAL INFORMATION”, which are presumably category titles, directly above the first blog. Is there CSS that would hide the category labels?
Hello Ben,
Thanks for reaching out. 
You can turn off filtrable index from X > Theme Options > Blog Options > Filterable Index.
Thanks.
When I turn off filterable index my blog layout on the homepage changes to a grid format. I like the layout with the filterable index turned on (thumbnail with paragraph of text off to the side). Can I keep the layout, but add some CSS to get rid of the category labels? Or, change the color of the text to match the white background so they’re not visible?
Hi Ben,
Yes, that is possible.
To hide it, you can add the code below in Theme Options > CSS
.blog ul.option-set.unstyled {
display:none;
}
Hope that helps
Yes, that worked perfectly.
Any chance there is similar code to hide the author, date, and category from the post carousel and post slider - blog?
Hi @bsettle,
Please try adding this custom CSS under Theme Options > CSS:
.x-post-carousel-meta,
.x-post-slider-entry .featured-meta {
display: none;
}
Hope it helps 
That worked perfectly. You guys are great! Thank you.
You’re more than welcome, glad we could help.
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.