2 columns in responsive design

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sun May 25, 2014 2:45 pm
Reply with quote
Report this post
Hello,

How can i add 2 columns article in responsive news2 design?

Thanks.
User avatar
Senior Boarder

teitbite
Tue May 27, 2014 6:38 pm
Reply with quote
Report this post
Hi

Can You please tell me more details about the issue ? An example of the page and information about the layout You want it to have it for would be great.
User avatar
Moderator

GK User
Tue May 27, 2014 8:45 pm
Reply with quote
Report this post
I mean 2 columns in the article. Does News2 contain a css style for this?
User avatar
Senior Boarder

teitbite
Thu May 29, 2014 4:53 pm
Reply with quote
Report this post
Hi

This requires a small addition to override.css file (please make sure override is enabled in template settings):

Code: Select all
.SELECTOR_OF_YOUR_LAYER_WITH_TEXT {
-webkit-column-count:2;
-moz-column-count:2;
-ms-column-count:2;
-o-column-count:2;
column-count:2;
}
User avatar
Moderator

GK User
Sun Jun 01, 2014 5:06 pm
Reply with quote
Report this post
Hi,

I've added code like that,

Code: Select all
.twocolumn{
-webkit-column-count:2;
-moz-column-count:2;
-ms-column-count:2;
-o-column-count:2;
column-count:2;
}


But not working if i add it with <p style="twocolumn">

What am i doing wrong here? By the way override is enabled.

Thanks.

teitbite wrote:Hi

This requires a small addition to override.css file (please make sure override is enabled in template settings):

Code: Select all
.SELECTOR_OF_YOUR_LAYER_WITH_TEXT {
-webkit-column-count:2;
-moz-column-count:2;
-ms-column-count:2;
-o-column-count:2;
column-count:2;
}
User avatar
Senior Boarder

teitbite
Tue Jun 03, 2014 12:21 pm
Reply with quote
Report this post
Hi

Please try with this:

Code: Select all
<p class="twocolumn">
....
</p>
User avatar
Moderator

GK User
Tue Jun 03, 2014 9:50 pm
Reply with quote
Report this post
Hi,

Perfectly worked thanks

teitbite wrote:Hi

Please try with this:

Code: Select all
<p class="twocolumn">
....
</p>
User avatar
Senior Boarder

teitbite
Thu Jun 05, 2014 10:26 am
Reply with quote
Report this post
Hi

No problem. Glad I could help :)
User avatar
Moderator

GK User
Sat Sep 13, 2014 7:38 pm
Reply with quote
Report this post
Hello again,

How can i make 4 and 6 columns?

Thank you
User avatar
Senior Boarder

teitbite
Sun Sep 14, 2014 10:54 am
Reply with quote
Report this post
Hi

I believe same thing:

Code: Select all
<p class="fourcolumns"></p>

.fourcolumns{
-webkit-column-count:4;
-moz-column-count:4;
-ms-column-count:4;
-o-column-count:4;
column-count:4;
}


etc....
User avatar
Moderator


cron