Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #354193

    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.

    #355535

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.