Change post featured image

Using background-size: cover instead of background-size: contain with a custom background-position ? It will cut images but preserve the same format/size for all.

wp_list_pages two columns

I got everything working, but had to change my approach to get it working the way I wanted. Basically, the easiest approach (at least for me), was to create two menus…one for small screen sizes and one for larger ones. So, the code looks like: <!– Head –> <div id=”head”> <!– Nav –> <ul class=”nav”> … Read more

Dequeing Parent Fontawesome Deques Parent Styles

Solution I found the cause for my problem. I used the “Child Theme Configurator” plugin to generate my child theme. The plugin put the following code at the top of my functions.php. The plugin decided that wp-bootstrap-starter-fontawesome-cdn was relevant for the loading of the themes main CSS (look at the very end of the wp_enqueue_style … Read more

child-theme style not changing on localhost

Try this: function enqueue_child_theme_styles() { wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style( ‘child-style’, get_stylesheet_uri() . ‘?v=’ . filemtime( get_stylesheet_directory() . ‘/style.css’ ) ); }