I’m using lightbox+colorbox to open up blog entries, it works fine on normal screen but i have to define a maximum with of the single-blog page for mobile devices. Could you please hint on what custom css i should use.
Hi marcelmontel!
Change this Code:
@media only screen and (max-width: 768px) {
.post {
550px !important;
}}
to this one:
@media only screen and (max-width: 768px) {
.post {
150px !important;
}}
And you should make the font size of titles smaller:
@media only screen and (max-width: 768px) {
#top .fullsize .template-blog .post-title {
font-size: 13px;
}}
Regards,
Andy