Change font size of the Portfolio elements

Hey @Max! I have a widget currently titled “Leah’s Test Widget” where I am trying to change the font size on each of the hover items: title, description, client. Do you have the CSS to be able to do that for each element?

Thank you!

2 Likes

Hi there, @Quilla :wave:

Sure, here is the code:

.eapp-portfolio-project-look-overlay-name {
  font-size:35px;
}

.eapp-portfolio-project-look-overlay-meta-item {
  font-size: 25px;
}

.eapp-portfolio-project-look-overlay-description {
  font-size: 20px;
}

Please try it out and let me know if it helped :slightly_smiling_face:

2 Likes

Ya’ll are always the best! :grin:

Thank you so much for these!

2 Likes

You’re always welcome :slightly_smiling_face:

@Max would you happen to have the CSS for the font when the Portfolio Pop Up is open?

1 Like

Sure, here is the solution :slightly_smiling_face:

.global-styles,
.eapp-portfolio-project-detailed-name {
  font-size: 35px;
}

.global-styles,
.eapp-portfolio-project-detailed-description {
  font-size: 25px;
}

.global-styles,
.eapp-portfolio-text-label-group-item {
  font-size: 15px;
}
1 Like