CosmicMeatZoo Posted March 31, 2020 Share Posted March 31, 2020 Any custom CSS for decreasing the word spacing between items in the navigation? I like the typeface I'm using for it (source code pro), but some navigation items have two words and they're so far apart they look like seperate links. I switched my body text font for the same reason. If that's something that can be globally adjusted in CSS I'd like to do that as well. I'm running on a personal plan, site is under construction [hence the lack of link]. Link to comment
tuanphan Posted March 31, 2020 Share Posted March 31, 2020 difficult to help without checking url ✌️ Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
CosmicMeatZoo Posted March 31, 2020 Author Share Posted March 31, 2020 It's under construction https://www.amberjainowell.squarespace.com Link to comment
tuanphan Posted March 31, 2020 Share Posted March 31, 2020 Add to Design > Custom CSS @media screen and (min-width:769px) { body:not(.touch-styles) .nav-wrapper nav>div+div { margin-left: 30px; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
CosmicMeatZoo Posted March 31, 2020 Author Share Posted March 31, 2020 hmm, that's increasing the distance between the links, not decreasing the space between the words Link to comment
tuanphan Posted March 31, 2020 Share Posted March 31, 2020 div#mainNavWrapper span { word-spacing: 33px; } or you mean letter, use this div#mainNavWrapper span { letter-spacing: 33px; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
CosmicMeatZoo Posted March 31, 2020 Author Share Posted March 31, 2020 It's the first one but it only changed the word spacing on the first entry. I saved and refreshed the page but it didn't affect any of the other links Link to comment
tuanphan Posted March 31, 2020 Share Posted March 31, 2020 7 hours ago, NeighborhoodOverlord said: It's the first one but it only changed the word spacing on the first entry. I saved and refreshed the page but it didn't affect any of the other links try editing div#mainNavWrapper span to div#mainNavWrapper * Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
CosmicMeatZoo Posted April 3, 2020 Author Share Posted April 3, 2020 That worked! Thank you so much! 😊 Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.