Make Side Bars Visible in Suffusion Theme
Feb 23
After I start using wordpress for this site I discovered Suffusion theme (the awesome theme I’m currently using). So I started using it for a while but I faced a little problem. I tried to add a floating social bar (like the one in your left hand) but it gets display when scrolling a bit, not as soon as the page is loaded. I really tried a lot of options (for example):
- Scrolling Social Sharebar
- Scrolling Twitter Like Google Plusone Linkedin and Stumbleupon
- Digg Digg
- 1 Click Retweet/Share/Like
- Sharebar
and some other but always without success. So after some investigation I figured a very simple solution. All you need is to change the CSS attribute to be like this:
1 |
overflow: visible |
instead of:
1 |
overflow: hidden |
This change is made in style.css file for (#content) and (.post, div.page).
The problem here is in case of upgrading the theme you will loose changes, so instead of make this change directly to style.css, Suffusion provide a way to define any custom styles. These styles will override all other styles that are defined. To do that go to Suffusion Options -> Backend -> Custom Includes -> Custom Styles and simply paste the following code inside Custom Styles box:
1 2 |
.post, div.page {overflow:visible;} #content {overflow:visible;} |
Hope this will help someone. 🙂
Hey! I
hope you don’t mind but I decided to post your weblog:
http://www.felfelworld.com/2012/02/23/make-side-bars-visible-in-suffusion-theme/ to
my internet directory
website. I used, “Make Side Bars Visible in Suffusion Theme”
as your website
headline. I hope this is okay with you. If perhaps you’d like me to
change the totle or
remove itt completely, e-mail me at kenneth-rea@hotmail.com.
Appreciate it.
I feel your annoyance. I never had any luck with this kind
of thing, either. So relieved to know I’m not by myself!