New to CMSMS - Content Question

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
eleven3

New to CMSMS - Content Question

Post by eleven3 »

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.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm

Re: New to CMSMS - Content Question

Post by calguy1000 »

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)

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>
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.
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.
eleven3

Re: New to CMSMS - Content Question

Post by eleven3 »

Ok that all makes sense.

(except all that table nonsense)

;)

Can names be anything I choose?

I appreciate the quick response.  Thanks.
calguy1000
Support Guru
Support Guru
Posts: 8169
Joined: Tue Oct 19, 2004 6:44 pm

Re: New to CMSMS - Content Question

Post by calguy1000 »

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.
Locked

Return to “Layout and Design (CSS & HTML)”