Hi,
I’ve got a ONE page homepage and trying to realise two things:
1. I got a template with ‘no header and no footer’ is it still possible to show the socket?
2. I’ve got a picture in a color section set to ‘center center’ and ‘fixed’ with a cutom id is it possible to only change the ‘fixed’ state to ‘scrolled’ for ipad and iphone with a media querie?
Cheers Herrbirk
Hi herrbirk!
It’s possible, for 1 simply use a normal Page template (not blank), then target it via ID and hide the header/footer:
.page-id-2251 #header, .page-id-2251 #footer {
display: none;
}
For the second request, you can make use of the already created media queries located here, just put your code inside the mobile block.
Regards,
Josue
Damn brilliant!
Cheers!