If you hate that largely pointless LinkedIn sidebar:

```
.scaffold-layout__aside {
display: none;
}

.scaffold-layout--reflow .scaffold-layout__content--sidebar-main-aside {
grid-template-areas: "sidebar main main";
}
```

Because I was forced to use LinkedIn today.

@aardrian Tried this today and no dice. I don't see that class anywhere on the tree, though I do see the grid on the div above main.

@jonstanis My CSS should work for a post, eg:
https://www.linkedin.com/posts/karlgroves_the-major-technical-reasons-why-accessibility-share-7449233159650676736-Z44D/

If you are trying to remove the sidebar from your feed:

```
#workspace > div > div > div:nth-child(3) {
display: none;
}

#workspace > div > div > div:nth-child(2) {
grid-column-end: col-end 24;
}
```

Adjust the `col-end` as your viewport warrants.

The major technical reasons why accessibility overlays don't work - AFixt | Karl Groves

The major technical reasons why accessibility overlays don't work https://lnkd.in/e6pQ27vr

LinkedIn