[Resolved] Mobile menu is pushing content down

Home Forums Support [Resolved] Mobile menu is pushing content down

Home Forums Support Mobile menu is pushing content down

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #240981
    Tom
    Lead Developer
    Lead Developer

    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;
    }
    #240991
    Edwin

    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

    #241111
    Tom
    Lead Developer
    Lead Developer

    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' );
    }
    #243059
    Edwin

    Thanks Tom

    All good now

    #243089
    Tom
    Lead Developer
    Lead Developer

    No problem 🙂

Viewing 5 posts - 16 through 20 (of 20 total)
  • You must be logged in to reply to this topic.