I'm working on a code snippet to showcase 4 buttons:
#buttons {
text-align: center;
padding-top: 4%;
}
#buttons img {
display: inline-block;
list-style: none;
padding: 10px;
}
#buttons p {
color: #fff;
font-family: ;
font-weight: 600;
font-size:19px;
}
#buttons li {
display: inline-block;
}
<div class="row" id="buttons">
<div class="large-3 small-12 columns">
<span id="bullets"></span>
<a href="#was_ist" id="was_ist_anchor"><img src="images/icons/question_icon.png"><p>Was ist Schnittchen</p></a>
</div>
<div class="large-3 small-12 columns">
<span id="bullets">•</span>
<a href="#wo" id="wo_anchor"><img src="images/icons/location_icon.png"><p>Wo finden Sie Schnittchen</p></a>
</div>
<div class="large-3 small-12 columns">
<span id="bullets">•</span>
<a href="#philosophie" id="#philosophie"><img src="images/icons/sandwich_icon.png"><p>Schnittchen Philosophie</p></a>
</div>
<div class="large-3 small-12 columns">
<span id="bullets">•</span>
<a href="#was_erwartet" id="#was_erwartet"><img src="images/icons/kiss_icon.png"><p>Was erwartet Sie</p></a>
</div>
</div>
The final result can be viewed at:
Now, I would like to add bullet points between these divs like: https://i.sstatic.net/Zw5sp.png
It is crucial that the result is responsive and that the bullet points are not visible on a mobile phone. Does anyone have an idea on how to achieve this?