Title page name only to be seen on 1st page

  • Unknown's avatar

    How do you get the title name only to be seen on first page and not have the title box pull up on other pages?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there,
    Do you mean the title of your site? “Perform Strong”? Do you only want the site title not be seeing on other pages or do you also want to hide your header image?

  • Unknown's avatar

    I was hoping the main Home Page would have the picture I chose and site title, but that with my other pages, I could input other photos and not have the site title. I was able to add a different photo to the Nutrition tab but unable to do it for the other pages.

  • Unknown's avatar

    Ok,
    Your theme Hemingway Rewritten works this way: If you have a featured image on each page, then the page will use this image instead of the header image set in the customizer. If you don’t have any featured image, then the header image will be displayed.

    Since you want different images, I suggest you use featured images for each page of your menu. In each of your pages, you should do the following:

    – Go to the respective Page and access the edit mode
    – Upload your desired featured image
    – Save and do this for each page

    It seems your current home front page is set to display your blog posts. This will show the header image. But you can also set to display a static page. To change this, follow these steps:
    – Click My Sites > Customize > Static front page.
    – Select Front page displays a static “a static page” and select the page you want on the front page. If you add a featured image to this page, then this image will be displayed instead of the header image.

    Now, to hide the site title in your menu pages, you could use this CSS:

    /*Training page */
    
    .page-id-12 .site-branding-wrapper {
        visibility: hidden;
    }
    
    /* Nutrition page */
    .page-id-10 .site-branding-wrapper {
        visibility: hidden;
    }
    
    /* Services page */
    
    .page-id-18 .site-branding-wrapper {
        visibility: hidden;
    }
    
    /* About page */
    .page-id-2 .site-branding-wrapper {
        visibility: hidden;
    }
    
    /* Contact page */
    
    .page-id-3 .site-branding-wrapper {
        visibility: hidden;
    }

    If you add more pages in the future to your menu, you will need to add the CSS for the respective pages. To find the id of your page, you can do it through the element inspector of your browser. You can find more information here: https://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/

    I hope this helps!

  • The topic ‘Title page name only to be seen on 1st page’ is closed to new replies.