Forum Moderators: not2easy
<% If session("Mobile")="1" Then %>
---display mobile only slideshow---
<% Else %>
---display desktop only slideshow---
<% End If %>
@media (min-width:509px)
{
.otherclass
{
display: none;
}
.slideshow
{
display: block;
width: 96%;
}
} and @media (max-width:508px)
{
.slideshow { display: none; }
.otherclass
{
display: block;
width: 96%;
}
}