Thanks for answering... I'll try and post the code better for you now. What a pity I can't use jsfiddle or code pen to provide an example - it is such a pity that these code snippet sites only accept css and not scss and susy!!!
Ok...
The HTML is -
<div class="nav">
<ul>
<li><a class="button active" href="#home">Home</a></li>
<li><a class="button" href="palms-for-sale.html">Shop</a></li>
<li><a class="button" href="ordering.html">Ordering</a></li>
<li><a class="button" href="delivery.html">Delivery</a></li>
<li><a class="button" href="plant-care.html">Care</a></li>
<li><a class="button" href="about.html">About</a></li>
</ul>
</div>
The scss is -
.nav {
@include susy-breakpoint($xmedium-bp, $medium) {
@include span(8 of 8 at 0);
@include margin-leader(1);
height: 30px;
line-height: 30px;
vertical-align: middle;
ul {
li {
display: inline;
}
}
}
@include susy-breakpoint($large-bp, $large) {
@include span(8 of 8 at 0);
}
ul {
li {
a {
&.button {
@include susy-breakpoint($xmedium-bp, $medium) {
@include with-layout(6 inside, true){
@include span(1);
&::before {
content: " | ";
}
&:first-child {
&::before {
content: "";
}
}
}
}
@include susy-breakpoint($large-bp, $large) {
@include with-layout(6 inside, true){
@include span(1);
}
}
}
}
}
}
}
I hope that I stripped the example back enough for you.
Thanks so much for looking.
Vx