featured content mobile view
-
Hi, with regards to the 4 featured content post tiles that sit under the slider. Is there any way of adding padding around these for the mobile view? just so that there is a little space between them and the slider, similar to a desktop view. Just looks nicer.
thanks
BennThe blog I need help with is: (visible only to logged in users)
-
Hi there – if you just want a gap between the 4 posts and the slider you can use:
@media only screen and (max-width: 782px) { .primary-content { margin-bottom: 10px; } }
If you want padding around all the posts then this will work:
@media only screen and (max-width: 782px) { .showcase .item { padding: 10px; } }
The 10px can be change to whatever size you like.
-
- The topic ‘featured content mobile view’ is closed to new replies.