Content, featured image and sidebar width for Sparkling WordPress theme

Hi!

Gotta say: Really love your theme! Keep up the good work.

One quick question: How can I “reach” certain div’s? I have my .container wider, but how do I change my sidebar and featured image?

Tried something like this:

.single-featured wp-post-image {
    width: 1400px;
}

But that doesn’t work.

Bastiaan

Remove whatever code you have added to make content area wider and use code like this instead:

@media (min-width: 1200px) {
  .container { 
    width: 1400px;
  }
  .single-featured {
    width: 100%;
  }
}

This code will make content and sidebar area 1400px in width and featured images will cover the entire area above post content.