Hi Alex,
The links disappear on purpose and instead a dropdown menu optimized for touching appears in the place of links.which makes life easier for iphone/ipod/android users. If you want to remove that functionality, its possible, but unless visitor use a toothpick, the links would be impossible to press with a human finger.
With the slider you have some options. Personally I would get rid of the text and the buttons for small screens since its hard to see the image itself so even if the font size is reduced, it would be like trying to read a name on a grain of rice.
However if you take out 6 words or so out of each slide, it will be alright.
Add the following to the Quick CSS in the backend or to your custom.css file please
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/*text*/
.featured_caption {
font-size: 9px;
}
/*position of the button*/
#top #wrap_all .button_wrap_1 .caption-slideshow-button {
width: 30%;
margin: 0 35%;
line-height: 20px;
}
/*position of the transparent overlay*/
#top .slideshow_inner_caption {
padding: 3%;
height: 100%;
width: 100%;
line-height: 1.5em;
}
/*control the transparent overlay .47 current, 1 = no transparency, 0= full transparency */
.caption_right_framed .slideshow_caption .slideshow_inner_caption, .caption_left_framed .slideshow_caption .slideshow_inner_caption {
background: rgba(0, 0, 0, 0.47);
}
}
Thanks,
Nick