@carmmaweb - there is no way to have 3 columns with different sizes using gkCols class without special CSS adjustments.
Please use syntax starting with:
- Code: Select all
<div class="gkCols gkColsDiff" data-cols="3">
then please create code like:
- Code: Select all
.gkColsDiff > div:nth-child(1) {
width: 50%!important;
}
.gkColsDiff > div:nth-child(2) {
width: 30%!important;
}
.gkColsDiff > div:nth-child(3) {
width: 20%!important;
}
@media (max-width: 640px) {
.gkColsDiff > div:nth-child(1),
.gkColsDiff > div:nth-child(2),
.gkColsDiff > div:nth-child(3) {
width: 100%!important;
}
}
in the template settings -> Advanced settings -> Custom CSS code