Thread Starter
bmulu
(@rmulugeta)
omg you are a life saver!! functions were spelled function
Thank you so mutch stephencottontail.
Thread Starter
bmulu
(@rmulugeta)
thanks stephencottontail and here is link
http://www.vol-cloud.co.uk/
Thread Starter
bmulu
(@rmulugeta)
Hi Supercargo and thanks for getting back to me
enqueue the parent and child theme stylesheets?
I have tried different enqueues and here is copy of function on child theme at present
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array(‘parent-style’)
);
}