post main category filter

Posted in: Newspaper
Post count: 4

Hi,

In the category page, I would like to use less filters than there are now.
I’m talking about this dropdown at the top that generates pages like ?filter_by=featured, ?filter_by=popular, etc.

I tried to target id but they are dynamic, how could I get rid of some of themb ut not all?

Thanks,

Post count: 7909

Hi,

You can use nth-child selector – https://www.w3schools.com/cssref/sel_nth-child.asp
For example this code will hide Featured Posts:

.td-category-pulldown-filter .td-pulldown-filter-item:nth-child(2) {
display: none;
}

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.