Hello – If you turn sorting on, you see a lovely set of filters above the given portfolio. Two questions about this:
1. How can I change the font size, color, etc. of this for **only** the portfolio on: http://thecaloriemythbook.com/sane-recipes?
2. How can include text such as “To Filter Click The Following:” before the filters?
Thank you
Hi,
Please add this code to Quick CSS
#js_sort_items a.active_sort { color: black!important; }
#js_sort_items a:hover { color:red!important; }
#js_sort_items a { color: blue!important; font-size:16px; }
This will change color of filters on all states and increase the font size.
To include text on filter, please open your WordPress directory and go to Enfold > Config-templatebuilder > Avia-Shortcodes and open Portfolio.php file and find this code in line 385
$output .= "<div class='sort_by_cat {$hide} '>";
And change it to
$output .= "To Filter Click The Following:<div class='sort_by_cat {$hide} '>";
Regards,
Yigit
Yigit! This is perfect. Thank you!