CSS people
- Started
- Last post
- 5 Responses
- Atkinson
Hello! I'm not into asking for help much on here but I thought on this occasion I would! I have a blog that is aligned center. I want it aligned left. How do I do that? http://www.caferoyal.org/news/
- fyvp0
Go into your wordpress themes area and edit the "veryplaintxt" theme to change:
body div.sidebar{text-align:center;}
to
body div.sidebar{text-align:left;}
- fyvp0
Or did you mean the whole page, and not just the nav?
In that case, you need to change
body div#wrapper{
margin: 0pt auto;
}to
body div#wrapper{
margin-left:10px;
}
- Atkinson0
hi, yes, everything. so that all pages, links, sidebars, comments etc etc are all left.
- Atkinson0
excellent, thanks!!
- fyvp0
No probs. If you want to left-align your navigation too, just apply the first fix I posted as well as the second one you've already used.