@micronda We understand what you are trying to say. We have designed the theme that way, not to show the featured text for ipad, iphone and other similar small devices.
In the iPhone if you show the featured text it may go beyond the slider area so this might be a issue, however you can use the following custom css to show the featured text in ipad.
In the dashboard, go to Appearance->Theme Options->Design Options Tab->Custom CSS and click on ‘Save all Changes’.
@media only screen and (max-width: 1078px) {
.featured-title,
.featured-content {
display: block;
}
}
@media only screen and (max-width: 767px) {
.featured-title,
.featured-content {
display: none;
}
}
We will be thinking about showing the featured text in all devices including iPhone in an optimized manner in our future updates. Thanks.