How can I change the name of the tab "Alles" (german) in portfolio?

Hi there

How can I change the name of the tab “All” in the widget Portfolio? I wanna change it to “Alle Mitarbeiter”.

https://dash.elfsight.com/widget/a41ba517-e92f-4d4f-9401-afc37e4e461f

Thank you.
Domi

2 Likes

Hi there :wave:

We’ve added this code to the Custom CSS field on the Style tab of your widget’s settings to change the text in the All tab:

.eapp-portfolio-project-list-categories-item:first-child {
  font-size: 0 !important; 
}

.eapp-portfolio-project-list-categories-item:first-child:after {
  content: 'Alle Mitarbeiter';
  font-size: 15px !important; 
}

@media screen and (max-width: 640px) {
  .eapp-portfolio-project-list-categories-item:first-child:after {
    font-size: 13px !important; 
}
}
2 Likes

Thank you very much, Max!
Domi

2 Likes

It’s my pleasure :wink:

1 Like