• Resolved Nichlas

    (@itsnwa)


    Why doesn’t the images on the main site go up to my max-width=”1280px”?
    itsnwa.com
    If you click on the title of the project, the size will increase to it’s oringnal size..

    Anyone?

Viewing 5 replies - 1 through 5 (of 5 total)
  • due to padding etc applied for instance to the .inner container;

    for example, you are using .work as CSS class in the body tag and the post div;

    possibly change the one style to:

    /* post */
    .work {
    	margin-top: 30px;
    	margin-bottom: 80px;
    }
    .work .work {
    	max-width: 1280px;
    }
    Thread Starter Nichlas

    (@itsnwa)

    That actually work well! But I think I might have to add another max-width: 1280px; somewhere, because as you can see now, the single-post view is going 100% without any limit.

    try to add:

    .single .work { max-width: 1280px; }

    try working with a browser isnpection tool to investigate the formatting of the image.

    Thread Starter Nichlas

    (@itsnwa)

    Perfect! Thank you so much for all your help alchymyth!

    Thread Starter Nichlas

    (@itsnwa)

    Signing off.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Max-width problem’ is closed to new replies.