How to setup Static home page …
-
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.. 🙂
Marking as resolved.
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?
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;
}@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!
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
@berect16, Try this,
.post-675 #sidebar_bottom {
display: none !important;
}If it doesn’t work in the child theme, try adding this in Graphene Options –> Display –> Custom CSS.
- You must be logged in to reply to this topic.
