• Hi all!

    I would like my overlay menu to include the site title, like it does on this site:

    paloma-fluid-demo.squarespace.com

    Is there any way to implement this in twentytwentytwo theme?

    • This topic was modified 2 years, 1 month ago by theye.

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

Viewing 1 replies (of 1 total)
  • To accomplish this I would start by adding a second Site Title to the navigation menu.
    Select the original Site Title block and in the block options click ‘Duplicate’. You will now have two Site Title’s. Drag the second Site Title to the Navigation block.

    Now you will need some custom CSS to hide the Site Title in the menu on larger screens:

    @media (min-width: 600px) {
      nav .wp-block-site-title {
        display: none;
      }
    }

    As the classic customizer/additional CSS link is not available for block themes, you can go directly by entering the URL https://www.yourdomain.com/wp-admin/customize.php in your browser address bar, and add the custom CSS under ‘Additional CSS’ and save/publish.

Viewing 1 replies (of 1 total)
  • The topic ‘Adding site title to overlay menu’ is closed to new replies.