Here is the css code snippet:
.single-post .container {
width: 60%;
}
not(.single-post) .container{
min-width:92%;
}
The goal I am aiming for is to have the container width set to 60% on single post pages and 92% on all other pages. To achieve this, I'm trying to exclude the .single-post class from the second line of code by using not(.single-post), but it doesn't seem to be working as expected.
On the other hand, the first line of code works perfectly fine.