Acme Themes

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Where are AT Widgets in Page Editior #82755
    Daniel Bye
    Participant

    Hi,

    Thanks for replying.

    The site is behind a holding page. However, I discovered I had to add a Site Origin Block first to get access to the AT widgets.

    in reply to: Change Menu Background Colour #81825
    Daniel Bye
    Participant

    Hi,

    How is the below code going to change the logo section background colour? This code totally removes the navbar.

    .navbar  {
    display:none;
    }
    in reply to: Bootstrap CSS Loads After Parent and Child Theme CSS #81824
    Daniel Bye
    Participant

    Hi,

    There’s been no reply from premium support in 2 days. In the end I sorted this problem myself through research – by making bootstrap dependent on the parent theme:

    add_action( 'wp_enqueue_scripts', 'bigint_enqueue_styles' );
    function bigint_enqueue_styles() {
        $parenthandle = 'event-star-style';
        $theme = wp_get_theme();
        wp_enqueue_style( $parenthandle, get_template_directory_uri() . '/style.css', 
            array('bootstrap'),
            $theme->parent()->get('Version')
        );
        wp_enqueue_style( 'child-style', get_stylesheet_uri(),
            array( $parenthandle ),
            $theme->get('Version')
        );
    }

    I noticed the free theme loads bootstrap CSS after the theme CSS too as soon as a child theme is added. Just one of the issues this causes is that Bootstrap creates a coloured menu item background on hover.

    Anyway, the solution above works. This topic can be closed.

Viewing 3 posts - 1 through 3 (of 3 total)