Hi there,
How do you make the featured images of posts responsive, so that their sizes change to fit smaller screens (tablet and mobile)?
Dyad is responsive by default, as you can see by experimenting with different browser widths on its demo site:
https://dyaddemo.wordpress.com
Featured image on posts/pages automatically adapt and are still visible when viewed across tablets and mobiles.
You currently don’t have any content on the home page of your site, which is why it’s not working as expected. Publish some posts in order to fill up the home page and you’ll then see the featured image display as expected across smaller devices.
If you’re still unhappy with how your site looks on smaller devices after that then please reply back here with some extra details. It’d be helpful to know specific pages of your site that you’re unhappy with and how you want them to look on tablets/mobiles.
In addition, how do you make the header image and tagline appear on smaller screens as well?
Similar to featured images, the header image should automatically display across all devices. Publish some posts to your site to get a better idea of its general design.
Dyad doesn’t display the tagline by default. However, you can get the tagline to display with some custom CSS.
To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)
Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme in order to display the tagline:
.site-branding .site-description {
display: block;
}
Let me know how you get on with that or if extra questions come up.