I`m planning to design one page that will be accessible from and iPad only. Is it an easy way to apply CSS like width and height for one particular page ?
Hey koanga!
You can use page id in your custom CSS code as following
.page-id-2251 .logo { display: none !important; }
You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
Cheers!
Yigit
Hi Yigit,
Thx for the reply. I add that code and nothing changed. Im working on a blank page template and what I
m trying to accomplish this:
1. No borders ( putting this code will affect the other pages as well )
#top.avia-blank #wrap_all #main .container_wrap {
border: none;
}
2. No top padding (adding this will affect all the pages as well)
.html_header_top.html_header_sticky #main {
padding-top: 88px;
}
page id that I`m working on it 3012.
Thank you.
Hey!
Please try following code in Quick CSS
.page-id-3012 #top.avia-blank #wrap_all #main .container_wrap {
border: none !important;
}
.page-id-3012 .html_header_top.html_header_sticky #main {
padding-top: 88px !important;
}
Regards,
Yigit
still nothing :(
Hi!
Please try it as following
.page-id-3012 #main .container_wrap {
border: none !important;
}
.page-id-3012 #main {
padding-top: 88px !important;
}
and flush browser cache after applying the code
Cheers!
Yigit
Success , thank you !