Hi can anyone please help? For all of my pages in funnelish i am using doube clone method hide for mobile and hide for web, Is there is any way or code which may help to make all devices optimize at once my basic purpose is i do not want to make changes on mobile and then desktop separately
Hey @Nasrullah_GhulamQadi, welcome to the Funnelish community! Great to have you here.
I totally get what you’re trying to do—managing separate clones for mobile and desktop can become really time-consuming. Instead of using the “double clone” method, you can take a more responsive approach using custom CSS and media queries. This way, you can build your section once and make it adapt to all screen sizes without duplicating elements.
For example, you can add custom CSS like this:
@media (max-width: 768px) {
/* Styles for mobile */
.your-section {
padding: 20px;
font-size: 14px;
}
}
@media (min-width: 769px) {
/* Styles for desktop */
.your-section {
padding: 40px;
font-size: 18px;
}
}
Apply a unique class to your section (like .your-section
) and use the CSS above in Funnelish’s custom code area. This approach helps keep your pages clean, optimized, and easier to maintain.
If you need hands-on help setting it up, feel free to reach out—I’d be happy to guide you through it!
Cheers,
Anwer