• Resolved adampembs

    (@adampembs)


    I would like no header image on other pages of the site.

    Why is my site title wrapped to 3 lines? I’d like it all on one line.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Rohit

    (@rohitkc32)

    Hi @adampembs,

    Thanks for writing us.

    To hide the header image from your site except for the homepage, please apply the following CSS:

    /* Hide the header image on all pages */
    .wp-custom-header {
    display: none;
    }
    /* Show the header image only on the homepage */
    .home .wp-custom-header {
    display: block;
    }

    To keep your site title in one line, please apply the following CSS:
    .cm-header-col-1{
    flex-basis: auto;
    }

    Let us know if it works or not, and I will get back to you.
    Regards!

    Thread Starter adampembs

    (@adampembs)

    Thank you, worked a treat!

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