I’m just reading Sitepoints “Build your own wicked Wordpress themes” and I’m learning a lot. They recommend using Thematic as a starting point, but this no longer seems up to date.
could anyone recommend a good theme to use as a solid basis to develop my own theme? Thanks.
Personally, I’d take a close look at the ones that come with a clean install to start with, and see if the article’s ideas can be applied to that. The code should be in a good state of repair and current.
I just took a poke around in the main CSS file for one of the included themes. What you find down near the bottom of that file is a series of @media queries. There are plenty of folk around here who can help you understand those if that’s what you need. The basis though, is that the media queries kick in when the screen size goes above/below the value the query is set for - they override the CSS rules set elsewhere in the file.
Thanks for your reply. Yes, I have seen the css @media rules in the main 2016 theme. However, I’d like to work with Bootstrap or something which gives a systematic way of dealing with different screen sizes. I imagine it might not be very clean adding the bootstrap media queries to the existing ones
Thanks, I’ve had a look at underscore. However, it says “no child themes”, and I thought the advantage of using a child theme was that the main theme can be updated (eg with new version of Wordpress) and this would deal with any future proofing issues
Child themes are good if you are using an out-of-the box ready-to-go theme. Because those themes are updated to keep up with changes to the WordPress core or to fix issues. And you don’t want to lose all your customization by overwriting it with the updated version of the theme.
As far as I know, the bare-bones themes such as underscores are different in that they are basically skeleton themes which you use to make your own theme, instead of using them as parent themes. They are meant for you to adjust them to suit your individual design needs.