Hello,
I would like to hide the site title and navigation in the mobile layout.
The code I am using in the "custom css for desktop version" works as expected.
The same code used in the "custom css for mobile version" successfully hides the navigation but not the site title. Could you please help me with this?
Link to example page: http://sebastianpetrovski.com/mands
Code pasted below....
/* mands /
/ site title /
body.slug-mands .sitetitle.txt .sitetitle-txt-inner span{
display: none;
}
/ navigation */
body.slug-mands nav.primary a{
display: none;
}