Scroll bar appearance

Q&A about the latest versions
Post Reply
adriansinc
Posts: 17
Joined: Mon Jun 26, 2017 12:10 pm

Hi,
I'm using a scroll bar in a thumbnail slider. How can you change the appearance of the scroll bar? The default background for instance is white, I would like to knock the opacity down and change colour. Thanks.
User avatar
Hopki
Gnome
Posts: 13005
Joined: Thu Jan 10, 2008 3:16 pm
Location: Layer de la Haye, Essex UK
Contact:

All the scroll bar colours can be found in the HTML page Pano2VR exports.
You are looking for:

Code: Select all

}
			/* fix for scroll bars on webkit & >=Mac OS X Lion */ 
			::-webkit-scrollbar {
				background-color: rgba(0,0,0,0.5);
				width: 0.75em;
			}
			::-webkit-scrollbar-thumb {
    			background-color:  rgba(255,255,255,0.5);
			}
Regards,
Hopki
Garden Gnome Support
If you send an e-mail to support please send a link to the forum post for reference.
support@ggnome.com
https://ggnome.com/wiki/documentation/
PLaine
Posts: 59
Joined: Thu Jun 15, 2017 3:56 pm

Hi

Is it possible to change the scroll bar thumb with a custom one (say with left and right arrows) ?
I've tried with

Code: Select all

background-image: url (images/scrollthumb.png);
with no success.

Thanks
Post Reply