Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #361006

    Hallo,
    ich würde in der Portfolio-Übersicht statt der regulär ausgegebenen Textlinks gerne Buttons mit den einzelnen Portfolio-Kategorien verwenden. Wie kann ich das umsetzen?
    Danke und beste Grüße,
    albiedo

    #361176

    Hi albiedo!

    You can try using some CSS like so.

    .sort_by_cat .inner_sort_button {
        background: none repeat scroll 0 0 black;
        border-radius: 2px;
        color: white;
        display: block;
        padding: 5px 15px !important;
    }

    If you want to remove the text separators then add this as well.

    .sort_by_cat .text-sep { display: none !important; }
    

    Cheers!
    Elliott

    #415555

    Hi Elliott,

    Danke, das ist nah dran. Zwei Dinge müsste ich noch anpassen: die Buttons sollen durch ein padding um ein paar Pixel voneinander entfernt werden. Und die aktive Portfolio-Kategorie sollte durch farbigen Text kenntlich sein.

    Danke für eure Hilfe!
    Beste Grüße,
    albiedo

    #415897

    Hi!

    Add the margin property:

    .sort_by_cat .inner_sort_button {
        background: none repeat scroll 0 0 black;
        border-radius: 2px;
        color: white;
        display: block;
        padding: 5px 15px !important;
    margin: 0 15px;
    }

    This is for the active state:

    .active_sort .inner_sort_button {
      background: red;
    }

    Regards,
    Ismael

    #415904

    Great! Now it’s a Bingo!
    Where can I tip?

    Best, albiedo

    #416872

    Hey!

    You can buy another license. Thank you. :)

    Best regards,
    Ismael

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Buttons anstatt Links zur Portfolio-Sortierung’ is closed to new replies.