karenowl Posted September 16, 2022 Share Posted September 16, 2022 (edited) Site URL: https://karenchan.co I created a bilingual (Chinese <> English) personal website (https://karenchan.co) On the header menu, each option has 2 languages (eg. there are homepage(Chinese) and homepage(Eng) My goal: When I visit Chinese pages, all English pages on the header menu will be hidden. I used the below code for Chinese pages (to hide English menu) but nothing happened on my site. #collection-6324c402e9e2b1601cc2a36e.header-nav-item:nth-child(even), #collection-6324c0fd96a62268fb782d0e.header-nav-item:nth-child(even), #collection-6324c1046efd5f53d3f174ca.header-nav-item:nth-child(even), #collection-6324c17b751d3b0423ebf3a3.header-nav-item:nth-child(even), #collection-6324c1ee6efd5f53d3f19d29.header-nav-item:nth-child(even) { display: none; } May I know what I did wrong?? Thankyou so much! Edited September 16, 2022 by karenowl Link to comment
Beyondspace Posted September 17, 2022 Share Posted September 17, 2022 17 hours ago, karenowl said: Site URL: https://karenchan.co I created a bilingual (Chinese <> English) personal website (https://karenchan.co) On the header menu, each option has 2 languages (eg. there are homepage(Chinese) and homepage(Eng) My goal: When I visit Chinese pages, all English pages on the header menu will be hidden. I used the below code for Chinese pages (to hide English menu) but nothing happened on my site. #collection-6324c402e9e2b1601cc2a36e.header-nav-item:nth-child(even), #collection-6324c0fd96a62268fb782d0e.header-nav-item:nth-child(even), #collection-6324c1046efd5f53d3f174ca.header-nav-item:nth-child(even), #collection-6324c17b751d3b0423ebf3a3.header-nav-item:nth-child(even), #collection-6324c1ee6efd5f53d3f19d29.header-nav-item:nth-child(even) { display: none; } May I know what I did wrong?? Thankyou so much! Your code should be #collection-6324c402e9e2b1601cc2a36e .header-nav-item:nth-child(even), #collection-6324c0fd96a62268fb782d0e .header-nav-item:nth-child(even), #collection-6324c1046efd5f53d3f174ca .header-nav-item:nth-child(even), #collection-6324c17b751d3b0423ebf3a3 .header-nav-item:nth-child(even), #collection-6324c1ee6efd5f53d3f19d29 .header-nav-item:nth-child(even) { display: none; } BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
karenowl Posted September 19, 2022 Author Share Posted September 19, 2022 On 9/17/2022 at 10:05 PM, bangank36 said: Your code should be #collection-6324c402e9e2b1601cc2a36e .header-nav-item:nth-child(even), #collection-6324c0fd96a62268fb782d0e .header-nav-item:nth-child(even), #collection-6324c1046efd5f53d3f174ca .header-nav-item:nth-child(even), #collection-6324c17b751d3b0423ebf3a3 .header-nav-item:nth-child(even), #collection-6324c1ee6efd5f53d3f19d29 .header-nav-item:nth-child(even) { display: none; } Thankyou sooo much! It works!! May I know what's the difference between my code and yours? Is it the space before certain words? I did not know space matters in coding. Anyway, you helped a lot, thank you again! Beyondspace 1 Link to comment
Beyondspace Posted September 19, 2022 Share Posted September 19, 2022 3 hours ago, karenowl said: Thankyou sooo much! It works!! May I know what's the difference between my code and yours? Is it the space before certain words? I did not know space matters in coding. Anyway, you helped a lot, thank you again! You can get reference from here: https://www.w3schools.com/cssref/css_selectors.asp Here is the difference Hope it can help karenowl 1 BeyondSpace - Squarespace Website Developer 🖼️ Lightbox Studio (Enable Pinch/Zoom on lightbox, video lightbox and much more) 🗓️ Delivery Date Picker (Squarespace Date picker form field) 💫 Gallery block 7.1 workaround 🥳 No-code customisations for Squarespace (+100 Spark plugin customisations) 🥳 Freemium Squarespace Widget Templates (+1000 Elfsight Templates) If you find my answer useful, let's leave a like or upvote so others with the same issue can find their solution. Thank you! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment