How to add a toggle button on the mobile side, the same as on the PC side

Topic summary

A user is seeking help to add a toggle button on the mobile version of their site, similar to what exists on the desktop version. They’ve shared custom CSS code that handles different display behaviors for desktop (min-width: 768px) and mobile (max-width: 767px) views, including video styling and swiper slide functionality.

Current situation:

  • The user provided their site URL (veymax.com) and a screenshot showing the desktop layout
  • A community helper requested the site link to inspect the issue
  • Upon review, the helper noted that the mobile slider is not visible and the mobile responsiveness needs improvement

Status: The discussion is ongoing with no resolution yet. The helper has identified mobile display issues but hasn’t provided a solution for implementing the toggle button functionality.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.
.homepage-skypixel-module .swiper-pagination-bullet { border: none; margin: 0; position: initial; } .homepage-skypixel-module .swiper-pagination-bullet:after { display: none; }

@media only screen and (min-width: 768px) {
.m-homepage-skypixel-grids {
display: none;
}
.homepage-skypixel-module {
display: block;
}
}

@media only screen and (max-width: 767px) {
.m-homepage-skypixel-grids {
display: block;
}
.homepage-skypixel-module {
display: none;
}
section.m-homepage-content-grids .stories-module-list a.banner-link, section.m-homepage-skypixel-grids .slide-grid-container .slide-container {
height: 114vw;
}
}

/* New CSS to make videos fill the entire container /
.slide-video-poster {
width: 100%;
height: 100%;
background-size: cover; /
Ensure background image covers the entire container /
background-position: center; /
Center the background image /
display: block; /
Ensure cover is displayed */
}

video {
width: 100%;
height: 100%; /* Adjust video height /
object-fit: cover; /
Make video keep its ratio and fill the entire container /
display: none; /
Initially hide video */
}

/* Show video in active slide */
.swiper-slide-active video {
display: block;
}

Roadster X4

105mm Wheel Daily Commuting

Cejour

Grab it and Go

Tail Lights

Escape From The City

Roadster X4

105mm Wheel Daily Commuting

Cejour

Grab it and Go

Tail Lights

Escape From The City

@Doris-v Hey, thanks for posting here.
can you please share the link to inspect it, thanks.

https://veymax.com/

@Doris-v i have not see your slider on mobile. but the mobile response is not good.