Hallo Lussumo! Great scripts!
I am working on a CMS design gallery site. And I am going to use Vanilla as the forum, but I have some problems whit the style, I had made the forum width 750px, but how do I center the forum? Lock at it her:
http://www.cmsgalleri.dk/forum/ . I am not god at css yet.
Sorry for my English it is bad.
Comments
You could use the simple CSS solution like this:
/* SiteContainer: A div that encloses the entire application - allowing for borders and special padding. */
.SiteContainer {
padding-bottom: 20px;
width:750px;
margin: 16px auto;
}
There was a margin-top: 16px; defined there so I included it in to the margin tag, pretty idiotically but meh.