Trying to get rid of post on my homepage
-
Hi all and thanks in advance for your assistance here. My website is http://anzballaz.com/ and my problem is i want to get rid of the post as below that displays on my “home page”.
http://img202.imageshack.us/img202/3884/unled1fio.jpg
and thanks KHAIRUL for the theme 🙂
Admin
Add into your Custom CSS option:
.home .post-4 {
display: none;
}thanks Syahir. will post back in here with how i went.
thanks. worked a treat!
hi, is there a way to insert a html object in place of this box? obviously i managed to get rid of the post box, but now that leaves me a gaping hole on my home page. how can i insert an object specifically into that space?
Admin
Put this in your child theme’s functions.php file to add any HTML under the list of “Homapage Panes” you have:
<?php
function anz_custom_content(){
if ( is_front_page() ) :
?>
<!-- Put your HTML content here -->
<?php
endif;
}
add_action( 'graphene_bottom_content', 'anz_custom_content' );
?>AWESOME! Thanks so much Syahir!
Hi,
I’ve just installed the graphene update and it has now removed the ability for these codes to work! HELP
Admin
It should still work. Where did you put those codes previously?
The one I am having issue with is removing the “Latest Post” box from our home page. I have this code in the Custom CSS
.home .post-4 {
display: none;
}But the box remains
Also, I’m unable to edit the size of the slider on the front page. Regardless of what size I enter, it doesn’t change.
Viewing 10 posts - 1 through 10 (of 15 total)
- 1
- 2
- You must be logged in to reply to this topic.