Sidebar: left right? (Photo 2.0)
- The topic ‘Sidebar: left right? (Photo 2.0)’ is closed to new replies.
Need help? Check out our Support site, then
When active, the default position of the sidebar in the “Photography 2.0” theme is on the right-side of the screen.
Is there a way to move the sidebar position to the left-side of the screen?
The blog I need help with is: (visible only to logged in users)
Hi there,
Unfortunately this is not a theme option for Photography. If you have the a business account or the Custom Design upgrade though, you can alter this with some custom CSS. Let us know if you need assistance with that!
Hi, Melissa, and thanks for your reply.
I do have the Custom Design upgrade, though judging by a quick look at what’s online I’m unsure about the parameters to modify.
Try this and see if it works:
aside {
float: left;
}
#content {
float: right;
}
Let me know if that fixes it. :)
Hi, Melissa.
Thank you; the basics of the CSS code you provided worked. I did want to push the “aside” further to the left, so that there’s some white space between the “aside” to the left and the “content” on the right.
aside {
float: left;
margin: 0px 0px 0px -10px;
}
Thanks again!
Perfect! Glad you got it worked out!