Great Theme but need help with a few issues

Hello,

First of all many thanks for such great themes and awesome support.

I´m still on the early stages of my blog, and even though I´ve changed a few things here and there, I need help with a few things such as:

1 - How can I make the featured image to show full width on the post page?
Still want to keep the sidebar but want the image to be full width - 1920x550
Currently using this code in CSS but is not achieving what I want:

 .single-featured {
width: 100%
}

2 - How can I define the content and sidebar column size?
I´ll like to play a bit with the percentage defined for content and sidebar in homepage, pages and post.
Can you give me an example of CSS code for that?

This is my url:
http://blog.empregodesonho.com/

Best regards,
Susana

Hello there,

I hope you are doing well today.

  1. The image is full width but it is in a container so it cannot extend beyond that container.
  2. This is the CSS to edit the columns:

/*First column*/
@media (min-width: 992px){
.col-md-8 {
    width: 66.66666667%;
}
}

/*Second column*/
@media (min-width: 992px){
.col-md-4 {
    width: 33.33333333%;
}
}

Best Regards,
Support

Many thanks for the help.
So regarding point 1, nothing can be done?

Hello there,

You can edit the container width but it can cause issues at different screen sizes:


.container {
    width: 100%;
}

Best Regards,
Support