Question relating the Drop Down Box.

Solved3.32K viewsWordPress
0

I have a question.

 

For the ‘Sort By’ in the question page.

Could it just be a Horizontal List that is open all the time?

 

I have attached an image from a previous question.

I don’t want the click and drop box. I just want the sortable list in tabs.

0

You just need to apply simple CSS. You have posted this many time (please delete your duplicates questions).

Here is the CSS you need:

#ap-question-sorting .ap-dropdown:first-child .ap-dropdown-toggle {
    display: none !important;
}
#ap-question-sorting .ap-dropdown:first-child .ap-dropdown-menu {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: medium none !important;
    box-shadow: none;
    display: block;
    position: relative;
    width: auto;
}
#ap-question-sorting .ap-dropdown:first-child .ap-dropdown-menu li {
    display: inline-block;
    margin: 0;
}

Thank you, I’ve only uploaded this once. But after the CSS and a few other setting I have made it to what i wanted thank you.