Accordion height limit with scrollbar

Hello,
Is it possible to have a height limit for a accordion opening ?
Like 300px height and the content could be seen with scrolling ?

Hi There @Lyser

Thanks for writing in! Could you please try adding the following CSS rule into your X -> Theme Options -> CSS area and see if that helps.

.x-acc-content {
    max-height: 300px;
    overflow-y: scroll;
}

Thanks!

Perfect, thx mldarshana ! =)

Do you know if it’s possible to custom the grey scrolling bar with css too ?

Hi @Lyser

Yes, you can do that as well. Update your CSS rule as follows and then change the colors accordingly.

.x-acc-content {
    max-height: 300px;
    overflow-y: scroll;
    scrollbar-color: red yellow;
}

Hope that helps.

Yep it helped, thank you very much ! =)

You’re welcome! :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.