Featured slider text on iPhone and other smartphones?

Great theme, I am using it with WooCommerce, so far so good. One small question. On an iPhone or small screen, the slider text vanishes. I’d rather keep it even if it obscures more of the image beneath. Is this adjustable? Ok another question for you – the menu changes to a drop-down even while the screen size is quite wide, again is this adjustable?

Thank you!

Everything is possible. :slight_smile:

To make dropdown menu appear on smaller devices you can add this at the end of your style.css

@media only screen and (max-width: 480px) {
#main-nav ul {
	display: none;
}
#main-nav select {
	display: block;
	width: 100%;
	border: 0 none;
	font: 14px 'Ubuntu', sans-serif;
	color: #555;
	height: 24px;
}
}

Make sure you remove these CSS properties where they are by default inside style.css.

To keep featured text on slider you should add this to your style.css

.featured-title,.featured-content,.featured-text {
	display: none;
}

right after @media only screen and (max-width: 319px).
You can tweak max-width: for devices as you wish.