Archived topic
Style the left sidebar - CSS
5 replies · Started by Barney on January 27, 2021
How do I style a border around the left sidebar? Thx!
Hi Barney,
Any chance you can link me to the page in question?
Or let me know if you are using the one container or separate containers layout?
The left-navigation with a yellow background is the left sidebar.
The layout is "separate containers."
ty!
Hi there,
you can use this CSS:
#left-sidebar {
border: 3px solid #0d65b1;
}
And if you want you can remove its top border on desktop ( as the element above has a border ) then add this CSS:
@media(min-width: 769px) {
#left-sidebar {
border-top: 0;
}
}
Works great. Thanks for going above and beyond with that second snippet of CSS!
You're welcome!