[Resolved] Titles showing up on Mobile and Tablet

Home Forums Support [Resolved] Titles showing up on Mobile and Tablet

Home Forums Support Titles showing up on Mobile and Tablet

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1974599
    guevara

    hello i would like the title not to show on mobile and tablet as in the desktop and i dont want to disable the content title under the elements because it would affect my H1 tags for seo. is their a way to hide them on mobile and tablet. I increased the the headers to full width to stop it showing on desktop.

    #1974897
    Ying
    Staff
    Customer Support

    Hi there,

    Try this CSS:

    @media (max-width: 768px) {
        .home h1.entry-title {
            display: none;
        }
    }

    Let me know πŸ™‚

    #1974916
    guevara

    Many thanks – you are a star.

    #1974973
    Ying
    Staff
    Customer Support

    You are welcome πŸ™‚

    #1975305
    guevara

    Hello it seemed to walk but now its kind of reverted back – please help

    #1975310
    Elvin
    Staff
    Customer Support

    Hi there,

    Can you re-add it? I don’t see it being added on your site anymore.

    You can add on it on Appearance > Customize > Additional CSS and make sure it is saved.

    Let us know how it goes. πŸ˜€

    #1975335
    guevara

    re added but still showing, help

    #1975337
    guevara

    Also cleared the cache

    #1975343
    Elvin
    Staff
    Customer Support

    Ah I misread the issue being asked. My bad.

    The titles are showing up on mobile and tablet because you have an @media rule exempting some viewports. ( @media (max-width:768) )

    Can you try removing the @media rule wrapping the CSS?

    Only add this: (no @media rule)

        .home h1.entry-title {
            display: none;
        }
    #1975347
    guevara

    still showing up

    #1975348
    guevara

    the home page is fine but the problem is with other pages.

    #1975356
    Elvin
    Staff
    Customer Support

    the home page is fine but the problem is with other pages.

    That’s the CSS provided was specifically applied to the home page only (.home selector)

    If you want it to apply site-wide, try this CSS instead:

    h1.entry-title {
            display: none;
    }
    #1975367
    guevara

    Many Thanks- πŸ‘πŸΎπŸ‘πŸΎ

    #1975375
    Elvin
    Staff
    Customer Support

    No problem. πŸ˜€

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.