bmceuen Posted October 26, 2021 Posted October 26, 2021 Site URL: https://onbrand.shop/ Hey all - just wondering if it's possible to make one of the pages on your nav bar have it's title appear across two lines?
Beyondspace Posted October 26, 2021 Posted October 26, 2021 48 minutes ago, bmceuen said: Site URL: https://onbrand.shop/ Hey all - just wondering if it's possible to make one of the pages on your nav bar have it's title appear across two lines? Is it the result you want to achieve? BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Pinch/Zoom images, videos - PDFs Lightbox - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> 🤖 Ask me anything
bmceuen Posted October 26, 2021 Author Posted October 26, 2021 Nope - looking to have the single item "Text a Personal Stylist" on two lines - the rest of them on one line. Hope that makes sense!
Beyondspace Posted October 26, 2021 Posted October 26, 2021 3 minutes ago, bmceuen said: Nope - looking to have the single item "Text a Personal Stylist" on two lines - the rest of them on one line. Hope that makes sense! Try .header-nav-item:first-child { width: 100%; } Let me know if it works properly on your site Support me by pressing 👍 if this useful for you BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Pinch/Zoom images, videos - PDFs Lightbox - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> 🤖 Ask me anything
bmceuen Posted October 26, 2021 Author Posted October 26, 2021 Ah I see. That's not quite it. So I'm looking to create something like this "Text A<br>Personal Stylist" "Blog" "FAQs" "About" "Log In" "BUTTON"
Beyondspace Posted October 26, 2021 Posted October 26, 2021 32 minutes ago, bmceuen said: Ah I see. That's not quite it. So I'm looking to create something like this "Text A<br>Personal Stylist" "Blog" "FAQs" "About" "Log In" "BUTTON" You can try the following Css code .header-nav-item:first-child { width: 100%; position: relative; } .header-nav-item:first-child a { display: flex; visibility: hidden; width: 0; position: static; } .header-nav-item:first-child a:before { position: absolute; right: 0; content: 'Text A'; color: #294f6b; visibility: visible !important; width: 50%; color: inherit; font-size: inherit; } .header-nav-item:first-child a:after { content: 'Personal Stylist'; color: #294f6b; visibility: visible !important; width: 50%; position: absolute; bottom: -33px; right: 0; color: inherit; font-size: inherit; } .header-nav-item:last-child { margin-right: 170px; } BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Pinch/Zoom images, videos - PDFs Lightbox - ...) </> 🗓️ Delivery Date Picker (Date picker form field) Gallery block 7.1 workaround </> 🤖 Ask me anything
bmceuen Posted October 26, 2021 Author Posted October 26, 2021 that's just about it, thank you so much!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.