Subtitle Font Resize for Mobile / Disable for Mobile?

Hi there… I’m glad you like it. I will try to remember to update the tested WordPress version in the readme. But if it works there’s nothing else to really update.

The plugin doesn’t handle any styles… that’s all left to you. If you want to serve different styles to different devices you need to write what’s called a CSS media query.

As an example, the following sets the subtitle class size to .75rem. But then any device wider than 300px (so everything but mobile) will have a size of 1.5rem.

.subtitle {
	font-size: .75rem;
}

@media (min-width: 300px) {
	.subtitle {
		font-size: 1.5rem;
	}
}
  

You should be able to get pretty custom this way. You can read more about media queries in the documentation.

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer