my site http://www.cjff.dk is set at boxed dimensions 1310, 100% width,
but I am seeing black borders on the sides on the ipad.
How can I make the white area fullscreen on tablets?
I thought anything over 960px would be full width.
Thanks for taking a look.
n
Hey N
Please add following code to Quick CSS
@media only screen and (max-width: 1024px) {
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header {
max-width: 100%;
}}
Best regards,
Yigit
tried that but it doesn’t seem to work. It’s not a big deal – just wanted to know why it was displaying that way, or if there was something I set wrong.
thanks
N
Hi!
No, that how it supposed to be actually. If you would like to make it fullwidth, please try adding !important rule
@media only screen and (max-width: 1024px) {
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header {
max-width: 100% !important;
}}
Best regards,
Yigit
ok thanks. I think I will leave it like it is.