Hi again,
I am trying to keep the top video viewable on Desktop and the bottom video hidden.
On mobile I want the bottom video viewable only (this is currently the case because of the code provided to me)
I seemed to have this issue solved on a test page I was using thanks to some excellent code give to me here. Unfortunately the code must have been specific to that page because now I have a video displaying on another page I am trying to hide.
The page can be found here: https://bionicgym.com/pages/a10052024
That code I have placed in my theme.css is
@media screen and (max-width:767px){
main#MainContent .shopify-section.index-section--hero:first-child {
display: none;
}
}
@media screen and (min-width:768px){
main#MainContent .shopify-section.index-section--hero:last-child {
display: none;
}
}
Thank you!