Buttons Only On Mobile

Posted in: Newsmag
Post count: 80

Hi TagDiv,

I am trying to create a button ONLY for Mobile.

On http://www.glitched.co.uk (view in mobile), I would like a standard button at the footer saying “Read More Stories”.

Is there a way to achieve this via media queries?

Post count: 6535

Hi

A css which will display the button only on mobiles could look like this:

@media(min-width: 767px){
.button-css-class{
display: none;
}
}

You’ll have to add button’s css class in this code and it will be displayed only on mobiles.

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newsmag’ is closed to new topics and replies.