Hi,
is it possible to change the text seperator / which is between the categories in the sort options of the portfolio grid?
So for example instead of the / i want an icon.
Thanks Simon
Hi simonac!
Add this to your custom CSS.
.business_sort_sep::before {
content: "\e800";
font-family: entypo-fontello;
color: yellow !important;
}
.business_sort_sep { color: white; }
Regards,
Elliott
Hi Elliot, that worked!
How can i adjust the position of the icon and how to make it bigger?
Thanks Simon!
Hi!
Please try adding this as well:
.text-sep business_sort_sep {
font-size: 15px !important;
}
Regards,
Rikard
Hi Rikard,
thad dit not work.
How about to adjust the position?
Thanks
Hey!
Please change the code to following one
.sort_by_cat span.text-sep:before {
content: "\e8c0";
font-family: entypo-fontello;
color: black !important;
font-size: 24px;
top: 3px;
position: relative;
left: 5px;
}
.sort_by_cat span.text-sep {
color: transparent!important;
}
Cheers!
Yigit
Great! That worked.
Many Thanks!!!