Layout design

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
5/16/2012 1:24:11 AM
Gravatar
Total Posts 11
Simone Sanfilippo

Layout design

Hi at all, I need some info about the layout of my mojoPortal website.

I need a layout like:

    TD                    TD                   TD

                 TD       TD        TD

Is possible?

Thanks,

Simone

5/16/2012 7:57:47 AM
Gravatar
Total Posts 18439

Re: Layout design

Hi,

You cannot layout feature instances like that, but you can do layout within a single instance of Html content feature. We include a few content templates that give examples how to do that. It is better to do layout within a single instance of Html content feature rather than creating a page with a  lot of separate Html content instances because each content instance requires additional hits to the database.  I would not use html tables for layout.

Actually, technically you "could" do layout like that with a table in the layout.master file and using 5 content panels, but I would not do that, I would try to do it in a single instance of Html content that uses the whole width of the page and then do column layout inside that single instance.

Hope that helps,

Joe

5/16/2012 12:04:57 PM
Gravatar
Total Posts 2239

Re: Layout design

Hi Simone,

Your desired layout is possible with mojoPortal. If you take a look a this page, you'll see some example content and css that will show you how to acomplish it.

The key here is to use the "Custom Css Class" option on the module instances so you can position them how you like on the page. Also, you must put all of the instances in one "panel." I used the "Center" panel for this example. Each one of the module instances has a class of "cpanes" and another class of "cpaneX" where X is the numbered pane (pane 1 has a class of cpane1).

Keep in mind that if you are only concerned with HTML content, you shouldn't use this approach. In that case, you should follow Joe Audette's advice about the single instance of HTML content feature.

HTH,
Joe D.

5/16/2012 3:35:55 PM
Gravatar
Total Posts 11
Simone Sanfilippo

Re: Layout design

Hi Joe,

ok this solution is perfect.

Thanks.

Simone

You must sign in to post in the forums. This thread is closed to new posts.