Wider photos, using the Chunk Theme

  • Hi! I’m using the Chunk theme and just upgraded to custom design today. I’m having problems figuring out how/if I can change the design to make the photos I post show up in 800 pixel width. I tried setting the “content width” to 800 pixel, but nothing happened. Also, the photos have a grey border (black when I hover over them), how can I avoid that? (don’t want borders…)

    Thanks in advance!

    The blog I need help with is: (visible only to logged in users)

  • I tried setting the “content width” to 800 pixel, but nothing happened.

    The CSS needs to target the image as follows:

    .entry-content a img {
    width: 800px;
    }

    Also, the photos have a grey border (black when I hover over them), how can I avoid that? (don’t want borders…)

    Try:

    .entry-content a img{
    border: none;
    }

    Let me know if these solutions work for you! :)

  • Thank you so much for your help :)

  • The topic ‘Wider photos, using the Chunk Theme’ is closed to new replies.