Article columns


Author Message
Piranha duiken

Posted: 1/10/2011
Quote message 

in artisteer 2.6:

a template is made in artisteer for Joomla 1.6
Now i have on the main page the option to set the number of columns for the articles

I can change what i will but the layout doesnt change.It will always be 1 column.
(other joomla templates will effect just as needed)
 
patrizia

Posted: 1/11/2011
Quote message 

Even the same thing happens to me, but with artisteer 3.0 and joomla 1.6.
Instead the same template works well with joomla 1.5!
 
Garry

Posted: 1/11/2011
Quote message 

From your Joomla Admin go to-> menu manager-> main menu-> Home-> on the right under "Parameters Basic" you can set your preferences.

 
patrizia

Posted: 1/11/2011
Quote message 

This is what I did, but there are also columns!
The same template works fine in Joomla 1.5.
Instead, at the same site in joomla 1.6, the columns are formed with the beez template.



Quote Garry:

From your Joomla Admin go to-> menu manager-> main menu-> Home-> on the right under "Parameters Basic" you can set your preferences.



 
Piranha duiken

Posted: 1/13/2011
Quote message 

Someone of the artisteer group a solution for the problem
 
cwailes

Posted: 1/13/2011
Quote message 

I am having the same issue. I have tried everything. In the core Joomla 1.6 templates it works fine. However, if I switch to a Artisteer template it goes to one column
 
Alex

Posted: 1/14/2011
Quote message 

You can try to copy column CSS rules from beez template:

.cols-1

{
display: block;
float: none !important;
margin: 0 !important;
}

.cols-2 .column-1
{
width:46%;
float:left;
}

.cols-2 .column-2
{
width:46%;
float:right;
margin:0
}

.cols-3 .column-1
{
float:left;
width:29%;
padding:0px 5px;
margin-right:4%

}
.cols-3 .column-2
{
float:left;
width:29%;
margin-left:0;
padding:0px 5px
}
.cols-3 .column-3
{
float:right;
width:29%;
padding:0px 5px
}

.column-1,
.column-2,
.column-3
{
padding:10px 5px
}

.column-2
{
width:55%;
margin-left:40%;
}

.column-3
{
width:30%
}


Just add them to the generated template.css file.

Regards,
Alex
 
Thorpcm

Posted: 1/16/2011
Quote message 

Thank you very much Alex
 
Erik G

Posted: 1/25/2011
Quote message 

THANKS!! It worked. However I also had to clean out the code in the articles (had some MS Word stuff in them).

But now it works - and I am so glad :-)
 
Jim D

Posted: 2/2/2011
Quote message 

This didnt work for me. Also, checked the layout code and the column classes in your css dont exist. Not your fault. Artisteer update just doesnt seem to work for joom 1.6

 
speed

Posted: 2/8/2011
Quote message 

Add in another row separator if need to span more than 1 row.


.row-separator
{
display: block;
clear: both;
margin: 0;
border: 0px;
height:1px
}