Forum Replies Created
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
Daniel Bye
ParticipantHi,
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.
Daniel Bye
ParticipantHi,
How is the below code going to change the logo section background colour? This code totally removes the navbar.
.navbar { display:none; }
Daniel Bye
ParticipantHi,
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.
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)