How to setup Static home page …

  • Dhurander

    #24318

    Got it.

    I will checkout the Firebug and the web-developer addons.

    Thanks.

    Dhurander

    Anonymous

    #24319

    Scrap my CSS suggestion to hide footer widget area on homepage. Here is a better solution.

    Go to Graphene Options –> Widget Area Options and select Enable alternate front page footer widget area. Then add nothing in that widget area. That all! No CSS hacks.. 🙂

    Anonymous

    #24320

    Marking as resolved.

    chitaranjan

    #24321

    Great to see this Prasanna. I am looking for the same kind of solution. Here is my website http://www.kockyn.com.

    I will try disabling the welcome page using your tip, I want to show only slider on the homepage.

    Is it possible to hide the header also on the homepage?

    Anonymous

    #24322

    @chitaranjan

    To hide your welcome page (static front page),

    .post-2720 {
    display: none;
    }

    Is it possible to hide the header also on the homepage?

    Untested, should work though

    .home #header {
    display: none;
    }

    chitaranjan

    #24323

    @Prasana

    Thanks a lot for the quick response, I will try this out today. I believed this should work.

    Using the hiding option, can I hide some of the post in slider which I used in static front page?

    I have also found out about the child theme which you have created. I haven’t used but looking forward.

    Great work!

    berect16

    #24324

    Hello, this is my first time writing in the forum.

    I found this topic looking for a way to hide the sidebar_bottom (Footer widget area) on a specific page.

    I’d love to get some help with that. With the knowledge I have of CSS (not a lot) I thought this might work, I added it to my custom CSS:

    .post-675 #sidebar_bottom {
    display: none;
    }

    However it didn’t work.

    This is the page where I’d like to have just one column, no sidebar, no footer widgets.

    http://www.gringsoftingenieria.com.ar/bere/spanish/the-school/capacitacion-en-idiomas/

    I already have a static page set up with alternate home page widgets, this is a different page I intend to use for something else, so I’m out of ideas…

    I’d appreciate any help, thank you in advanced!

    Berenice

    Anonymous

    #24325

    @berect16, Try this,

    .post-675 #sidebar_bottom {
    display: none !important;
    }

    berect16

    #24326

    Thank you for the quick response. I just tried, doesn’t seem to work…

    Anonymous

    #24327

    If it doesn’t work in the child theme, try adding this in Graphene Options –> Display –> Custom CSS.

Viewing 10 posts - 11 through 20 (of 24 total)

  • You must be logged in to reply to this topic.