Extended Popup

Is there a possibility to create an option to create more of a page style to add more text for each listing other than a pop-up?

Hi @Jasmine_Gilliam

If I understand you correctly,
you can fit a lot of text onto the page with the 4th layout
There is no popup either

Thank you for providing this insight. I prefer the first layout for visual purposes. When I begin to work with individuals, I’d like to be able to provide as much detail for their listing. So without knowing a word count I’m unsure how much I can write. Where I input the information it’s labeled as biography in the settings. The only option to view more of the information is through the pop up as well. So if someone wanted to read more in a full page style on that specific business, I wanted to be able to provide that.

1 Like

@Jasmine_Gilliam, you can switch to the 4th style, as Sina suggested, and use this code:

.eapp-team-showcase-grid-item {
  max-width: 25%;
}

.eapp-team-showcase-member-card-info-component {
  max-width: 100%;
}

@media (max-width: 700px) {
  .eapp-team-showcase-grid-item {
    max-width: 50%;
  }
}

This way, the 4th style will look like the 1st style, but with the biography displayed. Check it out and let me know if it worked for you :slightly_smiling_face:

1 Like