Enabling fixed Sidebar for blogger Contempo template for screen sizes smaller than 1440px
Here is how to do it : Add this code in your blogger template(where to add this code is mentioned before 2nd code snippet of this post) ,now the value 1300px is the screen size for which I want the sidebar to be always visible for, you can reduce this value as you like, but be aware that reducing this value to much smaller digit will result in showing the overlapped sidebar instead of content body for your blog readers who are using much smaller screen devices such as mobiles which you might not want to happen so be wise : @media screen and (max-width: 1300px) { .sidebar-container { bottom: 0; position: fixed; top: 0; } .sidebar-container { left: 0; right: auto; } .sidebar-container.sidebar-invisible { -webkit-transition-timing-function: cubic-bezier(0.4,0.0,0.6,1); tra...