Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #241811

    Is there a way to include only the footer without a header for a page? I know I can eliminate the header and footer, but I’d like to have a page that doesn’t have the menu options at the top, but does include the footer/socket info.

    thank you!!

    #241912

    Hey ikaika72!

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to hide the header within that page.

    .page-id-2251 #header {
    display: none;
    }
    
    .page-id-2251 #main {
    padding-top: 0;
    }

    Regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.