How can I alter the .feature-subheader text size for mobile and desktop?

Hi All,

Does anyone know the code to change the .feature-subheader size on my site? I’d like a different size for mobile and a different size for desk top.

Thanks!

G

1 Like

@kindredpeople

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community! :blush:
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

Hi @kindredpeople ,

Go to Assets > styles.css and paste this at the bottom of the file:

/* code for desktop */
.feature-subheader {
	font-size: 15px;
}
/* code for mobile */
@media (max-width: 767px) {
	.feature-subheader {
		font-size: 12px;
	}
}

Hope it is clear to you.