Header not showing in content builder or actual page

Hello, I have made my header global but it cannot be seen in the content builder and also in the preview page.

How do I make the header appear?

Hi There @pawmeal ,

Thanks for writing in! Most probably you’re experiencing a PHP memory related issue. Could you please try following the solutions below and see if that helps.

  1. Try re-generating your permalink settings and see if the issue is related to your .htaccess file. Check your permalink settings (General -> Permalinks) and set Postname save changes to re-create your .htaccess file.
  2. Then try increasing your PHP Memory limit. You can do this by editing your wp-config.php file which can be located under the root of your WordPress installation. Add the following lines into that file.
define( 'WP_MEMORY_LIMIT', '512M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );

You can add it before the line
/*That's all, stop editing! Happy Blogging. */
3. Make sure that you’re running at least PHP v5.6.x or later to avoid any WordPress related incompatibility issues. If you’re not sure what your server configurations and settings are, install a plugin like WP-Serverinfo (https://wordpress.org/plugins/wp-serverinfo/) and check your server info by head over to Dashboard -> WP Serverinfo area.
4. Check your PHP Max Execution Time and set it for 120 or higher for optimal usage.

If you have performed the above solutions and if you’re still experiencing the issue, you can test for a plugin conflict. You can do this by deactivating all third-party plugins, and see if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

Let us know how it goes.
Thank you.

Hello @mldarshana,

I have tried all the methods you mentioned, still cannot see the header :frowning:

On my homepage (news.pawmeal.com) , however, the header can be seen. On other pages (news.pawmeal.com/project-feed), the header is not appearing.

What should I do next?

Hi there,

That page uses a Blank - No Container | No Header, No Footer template, it’s a no-header template. Please change it to Blank - No Container | Header, No Footer. Or simply use a default template.

Hope this helps.

Thank you so much! It is showing up now :slight_smile:

May I also ask: how do i adjust position of the logo to be on the below 2 red boxes?

  1. the red box on the left is aligned with the word content in the body.
  2. The red box on the right is centered on the website.

Sorry, another query:
How do i make the header transparent, and having the logo / menu items appear over the hero image? (Means the hero image have to be filling the screen from the top)

Hi @pawmeal

In this case I suggest adding a custom CSS class (custom_logo for example) to your bar as in this screencast:

Then you can add this CSS snippet to (Pro > Theme Options > CSS) as following:

To get the logo displayed in the center

.custom_logo .x-bar-container {
    margin: 0 auto;
}

To get the logo displayed at the beginning of the content

.custom_logo .x-bar-container {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

Thanks.

Hi @Alaa, thank you.

May i ask, How do i make the header transparent, and having the logo / menu items appear over the hero image? (Means the hero image have to be filling the screen from the top)

Hi there,

Please inspect your header bar and make it’s position absolute, then change its background to transparent. It uses custom header, you can change it there :slight_smile:

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.