Your comments

Hello and sorry for the wait for an answer.

Have you followed the advice for your last question? If so, you may be able to add the following before the last two lines:


float: right;

If this doesn't work, please let us know what other changes you've made to the CSS and we'll be happy to further assist.

Thanks for contacting us. Sorry to hear you're having this issue.

Please share what steps you took to see this error and we'll do our best to help you solve this problem.

What inspiration are you using?

Does it show at any point?
Have you tried disabling other WordPress plugins? This may be a plugin conflict.

Sorry for the inconvenience. Would you be comfortable providing the domain having this issue? There may be interferring code from another plugin or custom setting.

You add the following to achieve this:

@media (max-widht: 768px) {

.site-title img,

button.navbar-toggle{

display: flex !important;

flex-direction: column !important;

margin: auto !important;

}

}

We're aware of the bug and are working on releasing a fix as soon as possible. I apologize for any inconvenience.

Have you cleared your browser, website, and server caches?
In the Customize section, there should be footer widget options under Advanced and/or Widgets.

You can add !important to the CSS code. You can read more about it from Stack Exchange.

You can add the following to your wp-config.php file above the line stating

"/* That's all, stop editing! Happy blogging. */":

// Filter the configuration of the post-and-page-builder.
require_once ABSPATH . '/wp-includes/plugin.php';
add_filter( 'BoldgridEditor\Config', function( $configs ) {
$configs['allowed_post_types'][] = 'custom_type';
return $configs;
} )

You'll want to change "custom_type" to whatever the new type actually is.

This full code block  also ensures that the code will not get overwritten during plugin or theme updates.