XenForo 2.0 How to show vertical scrollbar instead of buttons

poptastico

Well-known member
Registered
Joined
Sep 29, 2020
Messages
74
Points
28

Reputation:

Hi all,
I need to remove scroll buttons and show normal vertical scrollbar instead.
Tried css below but the scrollbar didn't show.
body {
overflow-y: scroll !important;
}
Does anybody know how to do it?

buttons.png
 
Last edited:

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,068
Points
173

Reputation:

What style ?
 

poptastico

Well-known member
Registered
Joined
Sep 29, 2020
Messages
74
Points
28

Reputation:

I got displaying the vertical scroll. Css code below:

::-webkit-scrollbar {
width: 15px;
display: block;
}

thanks
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,068
Points
173

Reputation:

Hi all,
I need to remove scroll buttons and show normal vertical scrollbar instead.
Tried css below but the scrollbar didn't show.
body {
overflow-y: scroll !important;
}
Does anybody know how to do it?

View attachment 32210
poptasticogoto /admin.php?styles/default-style.1/style-properties/group&group=page

2022-12-22_12-58-35.png
 
Top