Dixie McCall Well-known member Oct 12, 2021 #1 Hello How do I create a space between navigation buttons? See attached. Thank you. Attachments Screenshot (1007)_LI.webp 5 KB · Views: 7
O Old Nick Well-known member Oct 12, 2021 #2 You can try this Less: .p-navEl { margin-left: 15px; } Upvote 0 Downvote
Dixie McCall Well-known member Oct 12, 2021 #3 Thank you @nicodak. This does create space between nav buttons but it also shifts all nav content to right. See attached. Attachments Screenshot (1008)_LI.webp 6.6 KB · Views: 3 Upvote 0 Downvote
Thank you @nicodak. This does create space between nav buttons but it also shifts all nav content to right. See attached.
O Old Nick Well-known member Oct 12, 2021 #4 Maybe this can fix that Less: .p-navEl:first-child { margin-left: 0; } Put this code after the first one... Upvote 0 Downvote
Maybe this can fix that Less: .p-navEl:first-child { margin-left: 0; } Put this code after the first one...
Dixie McCall Well-known member Oct 12, 2021 #5 That didn't work but I changed the first to margin-right and that fixed it. So it reads like this. .p-navEl { margin-right: 10px; } .p-navEl:first-child { margin-left: 0; } Upvote 0 Downvote
That didn't work but I changed the first to margin-right and that fixed it. So it reads like this. .p-navEl { margin-right: 10px; } .p-navEl:first-child { margin-left: 0; }