CSS to move right sidebar to left side of content.
-
I am trying to move my right sidebar to the left side of my content but don’t know the proper css. My theme is the Healthy Living theme. Is it possible to switch these around? Thanks!
The blog I need help with is: (visible only to logged in users)
-
Hi there, modify the #primary and #secondary rules you have not to where they look like this.
#primary { float: right; } #secondary { float: left; } -
Thank you so much!! That did the trick. So, now that I’ve got them switched around is it possible to have a 4% margin on either side now?
-
On the margins, try the following. It gives the header and content area the same overall width and a 4% margin left and right.
.site { margin-left: 4%; margin-right: 4%; } .site-header { padding-left: 0; padding-right: 0; } -
-
- The topic ‘CSS to move right sidebar to left side of content.’ is closed to new replies.