MyBB Community Forums

Full Version: Custom Scroll bars and highlighting?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I was wondering how you get custom scroll bars and highlighting like http://yaldaram.com ?

Thanks.
Thats easy :
Check these tuts : http://davidwalsh.name/custom-scrollbars
http://beautifulpixels.com/goodies/creat...scrollbar/


copy this code and paste at bottom of your global.css :

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #ddd;
}

::-webkit-scrollbar-thumb {
	background: #292929;
	border: 1px solid #333;
	box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
}

This should help you,
regards,
(2013-04-16, 04:07 AM)envira Wrote: [ -> ]Thats easy :
Check these tuts : http://davidwalsh.name/custom-scrollbars
http://beautifulpixels.com/goodies/creat...scrollbar/


copy this code and paste at bottom of your global.css :

::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #ddd;
}

::-webkit-scrollbar-thumb {
	background: #292929;
	border: 1px solid #333;
	box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.4);
}

This should help you,
regards,
Didn't work Sad

It just showed up as a Black Bar- http://thespeedyfeed.com/index.php .