Okay
  Public Ticket #3393156
Team Member - Full Bio Shown
Closed

Comments

  •  1
    Mariel Hernández started the conversation

    Hi,

    I recently updated my theme but the team member bio shown fullscreen style but does not scroll anymore if there is more text.


    Thanks!

    Attached files:  Screenshot 2023-06-15 at 09-36-23 Ons team – Derksen & Drolsbach.png
      Screenshot 2023-06-15 at 09-37-05 Ons team – Derksen & Drolsbach.png

  •  2,967
    Andrew replied

    Hey Mariel,

    Thank you for getting back to us.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    /* team bio scroll */
    div.team-desc::-webkit-scrollbar {
        -webkit-appearance: none;
        width: 7px;
    }
    div.team-desc::-webkit-scrollbar-thumb {
        border-radius: 4px;
        background-color: rgb(0 0 0 / 50%);
        -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
    }
    .team-desc {
        overflow-y: scroll;
        padding-right:10px;
    }
    .team-desc {
        max-height: 70vh;
    }
    

    Thanks,