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
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
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
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
Great! Now it’s a Bingo!
Where can I tip?
Best, albiedo