Remove Panels

  • Hi all,

    I’m trying to construct a portfolio website using the confit theme. On the front page I would like a static page which has only the navigation menu. I want it so that you just view the background image and can use the navigation to see the work.

    Is there a way to remove the footer and main display box only on the home page?

    I know nothing about coding, please help!

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

  • To target just the home page, you can use “.home” at the beginning of your selectors.

    We require that you keep the footer links in tact, but you can move the footer to the left on the home page.

    Here is an example that will hide the main content area and move the footer to the left on the home page of the Confit theme:

    .home #primary {
    	display: none;
    }
    
    .home #colophon {
    	background: inherit;
    	position: absolute;
    	left: -322px;
    	bottom: 0;
    	width: 222px;
    }
  • Oh my god, you are my hero, Designsimply.
    Thank you so much.

  • The topic ‘Remove Panels’ is closed to new replies.