• Hi,
    I am using a child of 2012 theme to build a website.
    I want to have a full screen page for the home page with no title, no side bare. Just that image when you click memastudio.ca
    How am I able to achieve that?

    Cheres

Viewing 3 replies - 1 through 3 (of 3 total)
  • The non code way is to use a splash page plugin
    http://wordpress.org/plugins/search.php?q=splash+page

    The normal way ( need some coding) is to setup a static front page
    http://codex.wordpress.org/Creating_a_Static_Front_Page

    This static page that set as front page could be using a whole new page template or just regular page but use body_class() to target some elements to be visually removed.

    When using CSS to hide thing, use display none for everything excepts page title. For title, use CSS clip instead, this is so that the page has title and it’s most likely to be in H1 tag for SEO purpose.

    Example

    .page-id-123 .entry-title {
    	position: absolute !important;
    	clip: rect(1px 1px 1px 1px); /* IE7 */
    	clip: rect(1px, 1px, 1px, 1px);
    }

    123 is the page id

    Thread Starter memastudio

    (@memastudio)

    Thanks Paul, I am going to give the plugin a try!
    cheers

    Thread Starter memastudio

    (@memastudio)

    Hi,

    I tried the splash page plugin:

    -when i search MEMA STUDIO, the about page is the one that comes up; not the home page?!!!!

    -how to get rid of white band on both side of the screen and make the image fit the screen
    http://www.memastudio.ca/

    -how to get rid of background color of that “continue to the site” text and make it transparent

    here is the website:
    http://www.memastudio.ca/

    thanks a lot

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twnty twelve theme’ is closed to new replies.