Hello.
I need to reduce the top space in each page and to increase the width of the pages.
Please help, telling me how to change that. thx.
Hello.
I need to reduce the top space in each page and to increase the width of the pages.
Please help, telling me how to change that. thx.
Hi
You can customize css to achieve that:
#gkMainbody.gkcomponent {
padding-top: 50px !important;
}
@media (min-width: 1200px){
.item-page {
padding-left: 50px !important;
padding-right: 50px !important;
}
}
and adjust the value to suit your need.
Regards
Great, it works, thank you very much.