Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
hi!
is there any simple code to insert to bypass certain customisation on mobile devices ?
for example -
.wpb_wrapper .auto-type-element span.block {
padding: 15px 30px;
color: #8d61d6 !important;
hide - mobile or something ? }
Hi slego
If you wan't to hide any element in content for specific device, please watch a video to learn how to hide elements on VC.
Thank you.
oh sorry, I meant something else.
I have input a custom css code, to scale the autotype header. But it is way too big for mobile devices.
I was wondering how I could bypass that custom code only on mobile devices.
Hi slego
You can simply put this code on Custom CSS and it has to work .
@media (max-width: 600px) { .auto-type-element span.block { font-size: 18px; } }Thank you.