• Resolved michaelguillebeau

    (@michaelguillebeau)


    How can I just show my gallery and sidebars, without showing any front page content? I created a blank page, but that shows up as a gray rectangle. The behavior I want is the same as what you get when you hide the front page content, so if there’s an easy way to do that by default, that would work, too. Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Can you please show that page which has that gray rectangle so I can try to help with some CSS code?

    Thread Starter michaelguillebeau

    (@michaelguillebeau)

    Thanks, Poonam. I thought I had posted the page here, but I don’t see it. The site is https://www.michaelguillebeau.com. The gray rectangle is an attempt by WP to display the page content from a blank page I’ve set up. To re-iterate, what I’d like is for the page to show no content but just the gallery. Thanks.

    Add the following custom CSS to customize-> Additional CSS

    body.ls_top #content {
        display: none;
    }

    Hope it will help Let us know if you need help with anything else!

    Thread Starter michaelguillebeau

    (@michaelguillebeau)

    Thanks so much, Poonam, but this does a little more than I would like. I would like to display nothing when it’s my static page, but display the content when the user clicks something from the widgets. This does not display the content when the widget menu selection is clicked. Thanks for trying.

    Hello,

    Use the below code it will show the content on other pages but not homepage

    .home.ls_top #content {
        display: none;
    }

    Let us know if you need help with anything else!

    Thread Starter michaelguillebeau

    (@michaelguillebeau)

    Resolved! Thank you so much.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Set Front Page to Blank’ is closed to new replies.