Hi
I am trying to use this code:
@media only screen and (max-width: 767px) {.content { padding-bottom: 10;!important; }
.content { padding-top: 10px;!important; }}
to shrink the padding on mobile devices, but I’m not sure it’s working.
any suggestions? thanks
Hey Munford!
There is a small mistakes in the code, please use it as following instead
@media only screen and (max-width: 767px) {
.content { padding-bottom: 10px !important; }
.content { padding-top: 10px !important; }}
Then flush browser cache on your mobile device
Best regards,
Yigit
thanks! will try that.
that worked – also wondered if the overall width on the mobile could be increased / margins decreased?
I am having a problem with the justification of the text “two heads are better than one” on this page:
http://www.copenhagenfilmcompany.dk/2014/
where the textblock doesn’t justify correctly on the mobile – when I test it on http://mattkersley.com/responsive/,
it looks right, but on my iphone the lines break like this:
two heads
are
better than
one.
instead of:
two heads are
better than one
any fixes?
thanks
Hi!
You can add following code to Quick CSS to increase the container size on mobile
@media only screen and (max-width: 480px) {
.responsive .container {
width: 330px; }}
Best regards,
Yigit
cool thanks! that did it at 280px.