How to change the Scrollbar of your Blogpage
One of the most wanted thing in a template is responsiveness to impress visitors. It play a very important role in reputation of a blog. As basic things of a responsive template are bold use of colors, smooth scrolling, impressive menu therefore people usually focus on them but it is not just about that because several other things are also responsible for a responsive design like a stylish scrollbar. I don't thing scrollbar needs introduction everyone knows what a scrollbar is. So this post is about customizing scrollbar in blogger by CSS. I will share some stylish and impressive scroll bars below, choose yours and add it in your blog.
How To Customize Scroll bar In Blogger?
Step 1: Go to blogger dashboard, navigate to template and edit html.
Step 2: Click inside the code and search for below piece of code:
]]></b:skin>
Step 3: Choose a customized scrollbar and copy its code.
SEE ALSO
- HowTo Find Out If A Site Is Running On Wordpress
- Howto Add Multiple Author Bio Box in your Blogger Blog
- HowTo Connect Your Blog To Auto Post To Facebook Groups
- AutoShare Blog Posts on Facebook and other Social Networks
- HowI Share Blog Posts To Facebook Pages Automatically After Publishing (FirstMethod)
Style 1:
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
body::-webkit-scrollbar {
width: 12px;
background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb{
border-radius: 5px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #ccc;
}
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
background-color: #F5F5F5;
}
body::-webkit-scrollbar {
width: 12px;
background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb{
border-radius: 5px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #ccc;
}
No comments: