Hello,
I really like the BikeStore template and wanted to use it for my current project with K2 and K2 Store, but when i have checked the demo, seems that checkout pages are not responsive. Should not they be ?
Prompt reply appreciated.
Alex
bkrztuk wrote:Could you give me your site URL ? It is always easier to check CSS/HTML code on live site.
bkrztuk wrote:Of course you will not find table in small screen size, and you should scroll table horizontally (there is even caption below table). You see scroll bars because you are visiting this page via dekstop browser, check it on phone and you will see that there is no problem to use the checkout page. I don't know how you see this in other way. Table is responsive it scaled with screen size.
teitbite wrote:Hi
I've been ask by aliko1979 to join the discussion. Please send me an ftp access.
#k2storeCartPopup .product_quantity_input {
float: none;
width: auto;
}
@media only screen and (max-width:680px) {
#gkMainbody .k2store .table th,
#gkMainbody .k2store .table td {
padding: 8px 3px;
}
@media only screen and (max-width:580px) {
#gkMainbody .k2store_cartitems table#cart thead {
display: none;
}
#gkMainbody .k2store .table-bordered tr {
border-left: 1px solid #DDDDDD !important;
}
#gkMainbody .k2store .table-bordered tbody td {
display: table-cell;
}
#gkMainbody .k2store .table-bordered tbody td:first-child {
width: 100% !important;
display: block;
}
#gkMainbody .k2store .table-bordered tfoot td {
display: table-cell;
}
}
teitbite wrote:Hi
Adding this portion of code to override.css made it look a little better:
- Code: Select all
#k2storeCartPopup .product_quantity_input {
float: none;
width: auto;
}
@media only screen and (max-width:680px) {
#gkMainbody .k2store .table th,
#gkMainbody .k2store .table td {
padding: 8px 3px;
}
@media only screen and (max-width:580px) {
#gkMainbody .k2store_cartitems table#cart thead {
display: none;
}
#gkMainbody .k2store .table-bordered tr {
border-left: 1px solid #DDDDDD !important;
}
#gkMainbody .k2store .table-bordered tbody td {
display: table-cell;
}
#gkMainbody .k2store .table-bordered tbody td:first-child {
width: 100% !important;
display: block;
}
#gkMainbody .k2store .table-bordered tfoot td {
display: table-cell;
}
}