Archived topic
Mobile menu is pushing content down
19 replies · Started by Edwin on October 30, 2016
Viewing posts 16–20 of 20
I'm not seeing the title at all? How are you removing it?
Try this:
.blog .inside-article,
.archive .inside-article {
border-top:1px solid #9D7C52;
border-bottom:1px solid #9D7C52;
}
Hi Tom
It looks like that the picture is on top on the title. See the fourth one and below
.blog .inside-article,
.archive .inside-article {
border-top:1px solid #9D7C52;
border-bottom:1px solid #9D7C52;
}
That worked
Thanks
You actually have this CSS in your child theme which is hiding it:
.entry-title {
display: none;
}
As for moving it, you could try this:
add_action( 'after_setup_theme','tu_move_posted_on' );
function tu_move_posted_on()
{
remove_action( 'generate_after_entry_title', 'generate_post_meta' );
add_action( 'generate_before_entry_title', 'generate_post_meta' );
}
Thanks Tom
All good now
No problem :)
This archived topic is closed to new replies.