rovingpictures Posted July 10, 2019 Posted July 10, 2019 Hi, I want to show H1 on mobile only (otherwise there's no title, looks very bland). Really only need it on the landing page. Or get the page to display the title, but mobile only. Is this possible? www.mattschwab.com is my website. I had to make the landing "home" page a gallery page.
tuanphan Posted July 10, 2019 Posted July 10, 2019 Use CSS /* Hide h1 on 768px higher screen */ @media screen and (min-width:768px) { h1 { display: none; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
rovingpictures Posted July 10, 2019 Author Posted July 10, 2019 Thanks, that was perfect! Much appreciated.
rovingpictures Posted July 10, 2019 Author Posted July 10, 2019 Thanks, that was perfect! Much appreciated.
rovingpictures Posted July 10, 2019 Author Posted July 10, 2019 @tuanphan Sorry, I should have asked how do I get this for a specific range of pages? I tried #collection to test on one page but it came up with a Syntax error: collection-5d251a18b06cd6000163f1fd, @media screen and (min-width:768px) { h1 { display: none; } }
tuanphan Posted July 10, 2019 Posted July 10, 2019 @rovingpictures Your Code should be @media screen and (min-width:768px) { #collection-5d251a18b06cd6000163f1fd h1 { display: none; } } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
rovingpictures Posted July 11, 2019 Author Posted July 11, 2019 @tuanphan Thanks again! Really appreciate your time.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.