I was pulling out my hair trying to get the flexibility out of Joomla! that I desired. After a quick trip over to opensourcecms, I tried the demo of CMSMS. I'm hooked, it's so much more intuitive than the rat's nest of Joomla!. Thanks to everyone involved on the project, it rocks.
With that being said, I build websites for an agency in Portland, and often times our designers come up with a far different layout than the standard header - left column - right column - footer layout. So my question is this: is it possible to have multiple content blocks on a page?
I read through some posts but still do not have a clear answer.
Thanks a bunch.
New to CMSMS - Content Question
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: New to CMSMS - Content Question
Your template currently defines the number of content blocks on a page.
To have more than one content block you just need to put syntax like this into your template (i.e: 5 content areas, a header, 3 columns, and a footer)
I know I know, I shouldn't use tables, but for demonstration purposes, it's shorter.
Note: One block must be just {content} or some module stuff will break.
To have more than one content block you just need to put syntax like this into your template (i.e: 5 content areas, a header, 3 columns, and a footer)
Code: Select all
<table>
<tr><td colspan="3">{content block="top"}</td></tr>
<tr><td>{content block="left"}</td><td>{content}</td><td>{content block="right"}</td></tr>
<tr><td colspan="3">{content block="bottom"}</td></tr>
</table>
Note: One block must be just {content} or some module stuff will break.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: New to CMSMS - Content Question
Ok that all makes sense.
(except all that table nonsense)

Can names be anything I choose?
I appreciate the quick response. Thanks.
(except all that table nonsense)

Can names be anything I choose?
I appreciate the quick response. Thanks.
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: New to CMSMS - Content Question
Yeah, the block names can be whatever you want, but one has to be the default, and just labeled {content}
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.