Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #476610

    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

    #476694

    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

    #476708

    Hi Elliot, that worked!

    How can i adjust the position of the icon and how to make it bigger?

    Thanks Simon!

    #476870

    Hi!

    Please try adding this as well:

    .text-sep business_sort_sep {
      font-size: 15px !important;
    }

    Regards,
    Rikard

    #476937

    Hi Rikard,

    thad dit not work.

    How about to adjust the position?

    Thanks

    #477126

    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

    #477140

    Great! That worked.

    Many Thanks!!!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘portfolio grid sort options text seperator /’ is closed to new replies.