Hello!
I am using the pinboard theme (which I think is totally awesome! thank guys!) for my food blog – My Weekend Kitchen.
The display is beautiful on computer but on mobile, it is just a scroll of text.. I would prefer to have my featured images for each post displayed on mobile rather than the text.. The primary reason I like this theme is that it showcases the images and I feel for a food blog, it is more important on mobile site to show images than text..
Also is there a way to disable the slider featured post on mobile and only have a scroll of all blog posts?
Thanks a ton!
love,
ashima
http://www.myweekendkitchen.in
I can see your featured images on my mobile phone. A quick code to disable the slider on mobile is this custom CSS:
@media (max-width: 736px) {
#slider {
display: none;
}
}