Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I would suggest to check your theme settings to see if you can disable the theme’s sticky functionality. Perhaps there’s a way to set the logo image larger (it looks like the theme uses a small logo and a large one). or you can as well try this
    From what I can see when I check your site, the logo is made smaller due to the theme’s default functionality. Basically, the theme already makes your header sticky (and controls the size of your logo), so at this point, you’re using two different methods on the same header.

    You can override this by adding this to your CSS:

    .top_panel_fixed .top_panel_wrap .logo_fixed {
    display:none;
    }

    .top_panel_fixed .top_panel_wrap .logo_main {
    display:block;
    }

    1) First of all we should make sure that the widgets are related to sidebar area. Open your admin panel and go to Appearance > Widgets and see ‘sidebar’ area.

    2) Now we need to locate page template used for the page you need to remove sidebar from. Go to Pages > All Pages and check the one you need, see page template if any.

    3) Now open the correct page file and locate sidebar reference.

    <?php get_sidebar(); ?>

    Just remove it if you do not need it.

    4) In case you have no special template page for the page you can use WordPress conditional tags or create a new page template.

    Feel free to check the detailed video tutorial below:

Viewing 2 replies - 1 through 2 (of 2 total)