• Resolved ciaranrowe

    (@ciaranrowe)


    hi there,

    I’m working on a site using Zeever theme – not live yet. My query is about the post title.

    All pages and posts have a cover image with post title overlay which works fine on desktop, but the text in the post title wraps on mobile eg

    this is t
    he post text

    What is the best way to reduce the size of the post title on mobile devices, thanks

    Ciaran

Viewing 3 replies - 16 through 18 (of 18 total)
  • Plugin Author Yoga

    (@yogajegstudio)

    Hi @ciaranrowe

    You can try add this codes into the functions.php file inside the theme folder.

    add_action('after_setup_theme', 'remove_title_tag', 11);
    function remove_title_tag() {
    	remove_theme_support( 'title-tag' );
    }
    

    It should remove the other tag, so your site will only use one title tag.

    If there is still issue, please let me know.

    Thread Starter ciaranrowe

    (@ciaranrowe)

    Thanks Yoga! That seems to have fixed it.

    I appreciate your help

    Plugin Author Yoga

    (@yogajegstudio)

    Hi @ciaranrowe

    I recommend to make a child theme of your current theme, to put the functions.php codes.
    Just in case if you need to update the themes in the future, so that codes you added won’t disappeared.

    Glad I could help, if you still have any question please let me know.

    Thank you.

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Post title wrapping on mobile’ is closed to new replies.