badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

MJ

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Foliopress Area 'shrunk' when I switched to premium. #77202
    MJ
    Participant

    Oops, didn’t realise I was in a different theme. Newscard Pro is mine. Please disregard, I’ve done it with CSS.

    in reply to: Foliopress Area 'shrunk' when I switched to premium. #77189
    MJ
    Participant

    I’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, only Global Layout Setting in there. Is there a way to reduce the size without using CSS hacks?

    Thanks

    in reply to: margin-top: 32px #77131
    MJ
    Participant

    Front 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!

    in reply to: Responsive layout adjustment #76970
    MJ
    Participant

    Ah, 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')
        );
    }
Viewing 4 posts - 1 through 4 (of 4 total)