Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #287524

    Hey guys,

    Is it possible to create a landing page (Blank Page) in Enfold, with just no header?
    The current template allows for (Blank Page No-Header No-Footer)

    Please advice.

    Regards,
    David

    #287615

    Hey David!

    Thank you for using the theme!

    First, create a page then leave the template setting to default. We need to find the page id of that specific page. In order to find the current page id, you can use firebug or google chrome’s inspect element. Look for the body class id. It looks something like this:

    On the example above, the page id is page-id-734. Add something like this on Quick CSS or custom.css:

    .page-id-734 #header {
    display: none;
    }

    This will remove the header on that specific page. You might need to adjust the padding of the #main container as well.

    Regards,
    Ismael

    #287668

    Hey Ismael,

    many thanks. That worked perfectly, except how do I adjust the padding of the #main container on that page?

    Please advice.

    Regards,
    David.

    P.S. I am loving Enfold and the support is just first class :-)

    #287674

    Hi!

    Put the following in custom.css or Quick CSS:

    
    #main {
      padding: 88px 0 1px 0;
    }
    

    where the sequence of numbers are for top-left-bottom-right. Values are only examples and you can adjust them to your wishes.

    Regards,
    Günter

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