layout help!

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
Fri Nov 29, 2013 2:06 pm
Reply with quote
Report this post
Hope somebody can help on these 2 things, advising me what to change on backend parameters or on code and where's the code:

1)
the news show pro gk5 module on header_bottom position shows by default 1 row of products
(see here: https://www.dropbox.com/s/poyjvcfao7kl13l/01.jpg )
but clicking the side arrow twice it shows 2 rows
(see here: https://www.dropbox.com/s/gyyplc6x6fcgo3c/02.jpg ):
i would like to make it show 2 rows by default

2)
the k2 user view shows just 1 item per row
(see here: https://www.dropbox.com/s/8if4eyjvk0vv567/03.jpg )
while i would like it to show more items per row like the k2 category view does
(see here: https://www.dropbox.com/s/pmfhwpazzcwehoe/04.jpg )

thanks in advance
User avatar
Expert Boarder

teitbite
Mon Dec 02, 2013 7:43 am
Reply with quote
Report this post
Hi

Please show me Your site.
User avatar
Moderator

GK User
Mon Dec 02, 2013 9:48 am
Reply with quote
Report this post
www.darteshop.com

you should have superadmin access, if you need i can give login details back
User avatar
Expert Boarder

teitbite
Tue Dec 03, 2013 10:16 am
Reply with quote
Report this post
Hi

1. First of all I've set to show 18 products in 6 columns in module settings. Next thing is to add this css code to css file override.css (enabled override in template settings):

Code: Select all
.gkNspPM-ProductGallery .gkImagesWrapper.gkImagesCols6 > div {
    width: 33.3%;
}


2. Here just a small css code to make it display in 3 columns:

Code: Select all
.userView article.itemView {
    clear: none;
    float: left;
    width: 33.3%;
}
User avatar
Moderator

GK User
Fri Jan 03, 2014 1:03 pm
Reply with quote
Report this post
Thank you that helped!
What if i want to reach this also for the tag view?
User avatar
Expert Boarder

teitbite
Sun Jan 05, 2014 4:09 am
Reply with quote
Report this post
Hi

Can You show me an example of tag view page ?
User avatar
Moderator

GK User
Sun Jan 05, 2014 12:13 pm
Reply with quote
Report this post
Below i give you the link to a user view: 3 items per row ok!
http://www.darteshop.com/marcovb64

Below i give you the link to a tag view: 1 items per row, while i want 3 items per row like the user view!
http://www.darteshop.com/font

And i don't know why on this tag view the title is not shown... On module setting i put "show module title" to yes!
User avatar
Expert Boarder

teitbite
Wed Jan 08, 2014 3:06 am
Reply with quote
Report this post
Hi

Replace the previous code with:

Code: Select all
.genericView article.itemView,
.userView article.itemView {
    clear: none;
    float: left;
    width: 33.3%;
}


I'm not sure which module title You have in mind, but not all module positions support titles by design. Please add a style "gkStyle" to this module position in template settings.
User avatar
Moderator

GK User
Wed Jan 15, 2014 11:22 pm
Reply with quote
Report this post
thanks for helping

here: https://dl.dropboxusercontent.com/u/4395035/a.png
you can see the user view: almost perfect (i would "colums" to be a few pixels more separated...)
here: https://dl.dropboxusercontent.com/u/4395035/b.png
you can see the tag view: it's messy! why rows are not on the same line???

hope you can help with this
User avatar
Expert Boarder

teitbite
Sat Jan 18, 2014 3:53 am
Reply with quote
Report this post
Hi

Try this code:

Code: Select all
.genericView article.itemView, .userView article.itemView {
    border-top: medium none;
    clear: none;
    float: left;
    margin: 0 1% 24px !important;
    padding-top: 0 !important;
    width: 31.3%;
}
User avatar
Moderator

GK User
Sat Jan 18, 2014 10:54 am
Reply with quote
Report this post
that looks like it has solved everything perfectly: thank you very much man!
User avatar
Expert Boarder

teitbite
Wed Jan 22, 2014 5:05 am
Reply with quote
Report this post
Hi

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


cron