[Resolved] Page Header Design

Home Forums Support [Resolved] Page Header Design

Home Forums Support Page Header Design

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1972971
    Matthew

    I’m trying to get my page to appear in front of the page Header. I want it to look something like this Any ideas on how to do that?

    #1972997
    Ying
    Staff
    Customer Support

    Hi Matthew,

    Some custom CSS will be needed.

    Any chance you can link us to the site in question?

    You can use the private information field.
    https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information

    Let me know ๐Ÿ™‚

    #1973023
    Matthew

    Sure thing. I want to do this with specific pages and posts moving forward so I’ll give you the link to one of those pages.

    #1973040
    Leo
    Staff
    Customer Support

    This CSS should work:

    .site.grid-container {
        margin-top: -50px;
    }

    And to target this specific page:

    .page-id-685 .site.grid-container {
        margin-top: -50px;
    }

    And to target multiple page:

    .page-id-685 .site.grid-container,
    .page-id-xxx .site.grid-container,
    .page-id-xxxx .site.grid-container {
        margin-top: -50px;
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    #1973066
    Matthew

    Thanks!

    #1973083
    Leo
    Staff
    Customer Support

    No problem ๐Ÿ™‚

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