I manged to get this working by using:
PC Only
Place this anywhere you want the code to work
Code:
<span class="toggle_sidebar">
Line of code
</span>
Place this within extra.less
Code:
@media (max-width: 900px) {
.toggle_sidebar {
display: none;
}
}
Where you see "toggle_sidebar" you can name this what ever you like....
Mobile Only
Place this anywhere you like
Code:
<span class="show_sidebar">
Line of code
</span>
Place this within extra.less
Code:
@media (min-width: 800px) {
.show_sidebar {
display: none;
}
}