Multi column layout

September 2015 Joomla Template
GK User
Mon Nov 30, 2015 2:49 pm
Hi there,

Again, I love this template but I am missing a multi column layout for blog category (Joomla). Is this available? It seems like there is a css (table-row) causing this to deliberately make it 1 column per row. Can you advise on how to correct this? I would just like it to display 3 columns or as set per article settings. Can I fix this with some CSS changes? Or am I missing a setting somewhere?
Hope you can help!

Cheers,
Ronald
User avatar
Fresh Boarder

teitbite
Mon Nov 30, 2015 7:10 pm
Hi

Columns were disabled for design purposes, but tell me the url to an example of category page and I'll come up with a code to force it.
User avatar
Moderator

teitbite
Wed Dec 02, 2015 10:48 am
Hi

Looks like You've decided to use NSP module instead of category layout. Please send me an access to joomla panel so I'll check settings and will make it display 3 columns par page.
User avatar
Moderator

GK User
Sat Jan 16, 2016 8:13 am
Same problem here, I've specified 2 columns in default category settings.
http://rossannels.com/index.php/atwork/chairs
Thanks for help
User avatar
Expert Boarder

teitbite
Wed Jan 20, 2016 4:21 pm
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
.blog-page .item-list .item-list-row {
    box-sizing: padding-box;
    display: block;
    float: left;
    padding: 0 2% 2%;
    width: 50%;
}

.blog-page .item-list .item-list-row:nth-child(2n+3) {
    clear: both;
}

.blog-page .item-list .item-view {
    display: block;
}

.blog-page .item-list .item-view .item-content {
    display: block;
}
User avatar
Moderator

GK User
Thu Jan 21, 2016 1:33 pm
That works perfectly for the site fine, in mobile view other templates go from multiple column to single one when optimised. Works for now, much better, thank you!
User avatar
Expert Boarder

teitbite
Tue Jan 26, 2016 2:22 pm
Hi

Glad I could help.
---
If You were satisfied with our support please let other users know on Twitter: http://twitter.com/gavickpro or Facebook: http://www.facebook.com/gavickpro
User avatar
Moderator


cron