Joomla! Discussion Forums



It is currently Mon Nov 23, 2009 2:51 pm (All times are UTC )

 




Post new topic Reply to topic  [ 15 posts ] 
Author Message
Posted: Fri Dec 14, 2007 7:51 pm 
Joomla! Hero
Joomla! Hero
Offline

Joined: Sun Jun 25, 2006 12:12 am
Posts: 2292
Location: Salisbury, NC/USA (N. of Charlotte)
At present, J!1.5 allows selection of single or multiple column display on the front page, within Sections and within Categories

I'd like to suggest a new element whereby single or multiple, let's say maximum of 3 or 4, columns could be selected for layout of individual articles that appear by themselves as single articles that are intended to be listed as "Uncategorized" or static content.

I believe that allowing users to create 2-column layouts at the article level would be a good addition and allow more creative use of space to create narrower, easier-reading columns, vs screen wide run-on text for static content not assigned to sections or categories.

If I've missed something in the process of article-type selection, please reply and advise.

_________________
http://www.200mphJoomla.com - JOOMLA Development & Training
http://www.200mphMedia.net


Top
  E-mail  
 
Posted: Wed Dec 26, 2007 12:49 am 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Mon Oct 02, 2006 3:08 am
Posts: 601
Location: Turkey
Trying to columnize (!?) in article level is not an easy option. So many people wouldn't need this type options.

_________________
Every soul will taste of death.


Last edited by kelb on Wed Dec 26, 2007 6:53 am, edited 1 time in total.

Top
  E-mail  
 
Posted: Wed Dec 26, 2007 9:45 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Sep 21, 2005 9:25 am
Posts: 1542
Location: Thailand
Not a Q&T issue.  Moving to the parent forum.

tcp

_________________
http://www.gmitc.biz/


Top
   
 
Posted: Mon Mar 24, 2008 4:06 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Oct 30, 2005 1:39 am
Posts: 19
herb200mph -

I agree with you - the readability of a text-savvy article is poor with the one-column approach at the article level. The only way I've found around the problem is to stuff the text into a table and make the text divisioning the hard way.

It would be a real nice feature to be able to select a multi-column lay-out at the article level, making the text flow from one column to the next.

Anyone having a more elegant solution than mine?

/Per Hertz


Top
   
 
Posted: Mon Mar 24, 2008 4:13 pm 
Joomla! Hero
Joomla! Hero
Offline

Joined: Sun Jun 25, 2006 12:12 am
Posts: 2292
Location: Salisbury, NC/USA (N. of Charlotte)
Don't you know it!!! Maybe a script driven thingy that will allow "column linking" for text flow from Col 1 > Col 2 > Col 3, for example. The static table requires manual breaking of the article text flow and that can be a pain when doing back-edits.

Hey....we can dream and hope...LOLLLL

_________________
http://www.200mphJoomla.com - JOOMLA Development & Training
http://www.200mphMedia.net


Top
  E-mail  
 
Posted: Tue Oct 14, 2008 9:01 am 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Feb 18, 2008 10:01 am
Posts: 15
I am looking the same features.

Most of the screens are horizontal, so why bother scrolling down if you have enought screen real estate to have your text spanning on two or more collumns.
And yes, it will be SO much easier to read.


Top
  E-mail  
 
Posted: Fri Oct 17, 2008 9:19 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Fri Dec 08, 2006 8:59 am
Posts: 31
I have a client who desires this. I wish it were already a possibility.


Top
  E-mail  
 
Posted: Mon Feb 02, 2009 1:37 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sat Jan 10, 2009 12:39 am
Posts: 9
I guess this is still not possibe is it I could do with this too


Top
  E-mail  
 
Posted: Sat Apr 25, 2009 4:28 am 
User avatar
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Fri Feb 03, 2006 12:36 am
Posts: 2
Location: California
I managed to get the page to divide into multiple columns through css....(actually I stole the code from another website!)

The only problem is that I can't get the text to move over to the other columns.


Here is the css....
Code:
/* All */
.col2-set, .col3-set, .col4-set, .col5-set { column-count:2; }

/* Col2 */
.col2-set .col-1, .col2-set .col-2 { width:48.5%; }
.col2-set .col-1 { float:left; }
.col2-set .col-2 { float:right; }

/* Col2-alt */
.col2-alt-set .col-1 { width:32%; }
.col2-alt-set .col-2 { width:65%; }
.col2-alt-set .col-1 { float:left; }
.col2-alt-set .col-2 { float:right; }

/* Col3 */
.col3-set .col-1, .col3-set .col-2, .col3-set .col-3 { float:left; width:31.3%; }
.col3-set .col-1, .col3-set .col-2 { margin-right:3%; }

/* Col4 */
.col4-set .col-1, .col4-set .col-2, .col4-set .col-3, .col4-set .col-4 { float:left; width:22%; }
.col4-set .col-1, .col4-set .col-2, .col4-set .col-3 { margin-right:4%; }

/* Table Columns */
table .col-1, table .col-2, table .col-3, table .col-4 { float:none !important; margin:0 !important; }
.col3-set td.spacer { width:3%; }
.col4-set td.spacer { width:4%; }


Here is the way that I was using the code in the html for a 3 column layout.....

Code:
<span class="col3-set">
<span class="col-1">blah blah blah</span>
<span class="col-2">blah blah blah picture or something</span>
<span class="col-3">more blah blah blah</span>
</span>


As I said, the columns break up nicely...but not text is sent over to the columns. Maybe that has something to do with my particular template css (I didn't design the template or right the majority of the CSS for it.) I am going to try this with another template and see what happens.

Maybe someone here can help me sort this out and figure out what I'm missing.

_________________
CorradoMatt


Top
   
 
Posted: Sat Apr 25, 2009 4:33 am 
User avatar
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Fri Feb 03, 2006 12:36 am
Posts: 2
Location: California
Ok...so testing within another theme and the above code works.....now I just need to figure out why this doesn't work with the theme I am currently using. Maybe something to do with the floating divs or something.....I don't know CSS that well......

Wish me luck!

_________________
CorradoMatt


Top
   
 
Posted: Sat Apr 25, 2009 4:26 pm 
Joomla! Explorer
Joomla! Explorer
Online

Joined: Mon Aug 11, 2008 1:16 am
Posts: 312
You really don't need anything but span or divs with a bit of CSS.
I read somewhere that future versions of Joomla will be "tableless" designs.
So i've been honing my skills( such as the are). None of my components use tables for positioning.

Something like this may work for you:
Code:
/*CSS*/
div.main{width:100%}
div.col{width:33%}

<body>
<div class="main">
<div class="col">bla bla</div.<div class="col"> more bla</div><div class="col">excesssive blather</div>
</div>


Of coarse the css has to be in the head with the appropriate style tags.


Top
  E-mail  
 
Posted: Tue May 19, 2009 4:58 am 
Joomla! Intern
Joomla! Intern
Offline

Joined: Fri Mar 28, 2008 6:45 pm
Posts: 75
So has anyone figured out the ability to get article text to flow through columns without a manual layout?

_________________
Peter Matra
avenueCdesign

http://www.avenuecdesign.com & http://www.petermatra.com


Top
  E-mail  
 
Posted: Wed Nov 04, 2009 7:01 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Thu Apr 09, 2009 12:32 pm
Posts: 2
The beset solution I found (it's easy to integrate with a joomla template):
http://randysimons.nl/125,english/129,m ... lumn-text/
http://randysimons.com/overige/multicolumn/


Top
  E-mail  
 
Posted: Sat Nov 07, 2009 8:06 pm 
Joomla! Intern
Joomla! Intern
Offline

Joined: Fri Mar 28, 2008 6:45 pm
Posts: 75
Cool, thanks. It definitely looks cleaner than everything else I have seen out there. How are you invoking the JS? Do you put it at the end or the beginning of the text? What plugin do you use? My site is 950 wide which is very wide and hard to read long lengths of text. I have had several comments on this.

My other concern is adding images? I like to float images in the text as you can see from my site. Have you experimented with this. Unfortunately we are about to launch our next issue so I need to wait before I implement this as I need to test the code.

You can see my site at http://www.awantedmag.com
Cheers :pop
Pete

_________________
Peter Matra
avenueCdesign

http://www.avenuecdesign.com & http://www.petermatra.com


Top
  E-mail  
 
Posted: Sun Nov 08, 2009 7:54 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Thu Apr 09, 2009 12:32 pm
Posts: 2
Peter,
Quite nice layout but the code is at least messy! Keep a proper DIVs structure - that's crucial for the multicolumn solution. Just try the code below.

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<script type="text/javascript" src="multicolumn.js"></script>
<script type="text/javascript">   
multiColumnSettings=new MultiColumnSettings;
multiColumnSettings.classNameScreen='columnized';               
window.onload = function () {
new MultiColumn(document.getElementById("content"),multiColumnSettings);
}
</script>

<style type="text/css">
.columnized div {float:left; width:18em; padding:10px; position:relative; text-align: left; margin:0;}
/*.columnized div .readOn {position: absolute; right: 1em; bottom: -0.5em; color: #999999; }*/
</style>

</head>

<body>
<!--BEGIN: SIMPLIFIED CONTENT-->
<div id="content">
   <div id="proper_content">
<p>
<!-- paste here a lot of text -->
</p>
   </div>
</div>
<!--END: SIMPLIFIED CONTENT-->
</body>
</html>


I experimentally integrate multicolumn layout into my jooma template (based on beez): http://ci.swps.pl/test/index.php?option ... Itemid=126 - thats only a test so the layout is rather obscure.

Good luck
Krzysztof


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 15 posts ] 

Quick reply

 



Who is online

Users browsing this forum: becyn, blablaz, ForkyD, jedimonkey, kievari, nailson_imgn, sdchilderley, uglykidjoe and 43 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group