@mrmojorisin: Yes, font size issue can be corrected. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
@media screen and (max-width: 1200px) {
#feature-slider {
margin-top: 98px;
}
}
@media screen and (max-width: 1152px) {
#feature-slider {
margin-top: 68px;
}
}
@media screen and (max-width: 767px) {
#feature-slider {
margin-top: 46px;
}
#feature-slider .entry-title a {
font-size: 20px;
}
#feature-slider .entry-content {
font-size: 15px;
}
#feature-slider .readmore a,
#header-featured-image .readmore a {
font-size: 15px;
}
}
Note:
* The height of the slider is automatically calculated with respect to the width keeping it responsive. And your text in the slider seems to be more that they are barely visible.
* You can adjust the font-size as desired.
Regards,
Mahesh