Thursday, March 7, 2013

Force Gadgets to Stay Visible in Blogger Dynamic Views Template


Before

After
Your Dynamic Views gadgets would hide itself by default after a few seconds upon loading. It'd reappear when you bring your mouse over it. If you find this annoying, here's how you can force it to stay visible and remain visible at all times.

Go to Dashboard --> Template --> Customize --> Advanced --> Add CSS --> paste the following code --> Press enter after the last character of the last line } --> Apply to Blog. 
?
1
2
3
4
#gadget-dock{
position: fixed !important;
right: 0px !important;
}

Extra:

If you've used one of my other tweaks to reposition your gadget from the right to the left, use the following code instead to keep your gadgets visible.
?
1
2
3
4
#gadget-dock{
position: fixed !important;
left: 0px !important;
}
Cheers!

No comments:

Post a Comment