WowSlider Doesnt work when browse is smaller than certain size
I Can not get WowSlider to work when browse is smaller than certain size. Bates Brothers Amusements: Food & Games. Any Suggestions?
I Can not get WowSlider to work when browse is smaller than certain size. Bates Brothers Amusements: Food & Games. Any Suggestions?
In your navigation.css you have the below css styling which is making the the wow slider main image disappear when the browser width gets to 769px in width.
Look for the ul selector which is within the 769px media query tags:
@media screen and (max-width : 769px){
/*Make dropdown links appear inline*/
ul {
position: static;
display: none;
}
Change it to have #menu prior to the ul like below:
/*Make dropdown links appear inline*/
#menu ul {
position: static;
display: none;
}
The small thumbnail images disappear on small devices but I think that is what is meant to happen.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.