Right Sidebar – Sundance Theme
-
Hi there.
My blog is http://ateaoscem.com, and i am using Sundance Theme.
I have a lot of widgets in my sidebar.
However, they are not centered.I don´t want to change the article width, just center the sidebar.
Thank you!
The blog I need help with is: (visible only to logged in users)
-
This centers the widgets within the sidebar area, but does not center the content within the widgets themselves.
#secondary { float: none; margin-left: auto; margin-right: auto; }This would center the content within the widgets.
.widget { text-align: center; } -
I got it!
I had this in my code:
#secondary {
float: right;
margin-top: 0.7142857142em;
overflow: hidden;
width: 18.90243902%;
}Now, i do this
#secondary {
float: none;
margin-top: 0.7142857142em;
overflow: hidden;
width: 18%;
margin-left: auto;
margin-right: auto;
}and it works!
Thank you a lot! :)
-
- The topic ‘Right Sidebar – Sundance Theme’ is closed to new replies.