Forum Replies Created
-
AuthorPosts
-
MJParticipant
Oops, didn’t realise I was in a different theme. Newscard Pro is mine. Please disregard, I’ve done it with CSS.
MJParticipantI’d like to reduce the size of the Featured Image on single posts. You mention
Customize > Layout > Post Layout
but I don’t have that option, onlyGlobal Layout Setting
in there. Is there a way to reduce the size without using CSS hacks?Thanks
MJParticipantFront end. It’s not a big deal, just a little annoying as I’m always logged in. There’s CSS somewhere that’s overriding the CSS in my Child Theme. All other CSS can be done from the Child theme, sometimes requires !important but still works. The space (where the admin bar was) is still there. Probably in admin.css or something…
PS. There are WAY to many CAPTCHA images to submit this!
MJParticipantAh, I understand, thank you. I have added bootstrap loading to the Child Theme – Theme Functions (functions.php) file, all good now.
For the benefit of others:
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( 'bootstrap-style', get_template_directory_uri().'/assets/library/bootstrap/css/bootstrap.min.css', array(), '4.0.0'); 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 ), wp_get_theme()->get('Version') ); }
-
AuthorPosts