casafloralia Posted April 2, 2021 Share Posted April 2, 2021 Site URL: https://casafloraliaa.squarespace.com/ pw: studio hi! i'm trying to change the navigation links to vertical, like the image below. projects to the left, and contact to the right. can anyone help? Link to comment
creedon Posted April 3, 2021 Share Posted April 3, 2021 I'm thinking you're going to need some Javascript which would require the business plan or above. Javascript is needed to change the structure of the page. In other words move the navigation links down to the sides of the image. I don't know if it can be actually done. But in theory it is possible. Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
casafloralia Posted April 3, 2021 Author Share Posted April 3, 2021 I managed to do it with css, it's fixed but it's not responsive 😕 can anyone help? Link to comment
creedon Posted April 3, 2021 Share Posted April 3, 2021 This is not a solution. I think Javascript is going to be the only way to get to where I think you are trying to go. If you're going CSS only the following may get you a little closer. @media screen and ( min-width : 641px ) { .header-nav-item:first-child, .header-nav-item:last-child { position : fixed; top : 35%; } .header-nav-item:first-child { left : 2vw; -webkit-transform : rotate( -90deg ); -ms-transform : rotate( -90deg ); transform : rotate( -90deg ); } .header-nav-item:last-child { right : 2vw; -webkit-transform : rotate( 90deg ); -ms-transform : rotate( 90deg ); transform : rotate( 90deg ); } } Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
casafloralia Posted April 3, 2021 Author Share Posted April 3, 2021 it worked! looks perfect, thank you!!! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.