sidebar widget spacing
Hi.
I have 3 sidebars on my site. (https://wellnesswarriorsboston.org/) I used CSS to set the sidebar widget spacing for two types of sidebars, but I can't increase the spacing on the sidebar used for my password protected pages and I don't know why. My CSS code is below.
Home page (page-id-3848) uses Optional Sidebar 2
Password protected pages (e.g. https://wellnesswarriorsboston.org/team-events/) use Optional Sidebar 1
All other pages use Primary Sidebar.
.sidebar-primary .widget {
margin-bottom: 15px;
}
.page-id-3848 .sidebar-primary .widget {
margin-bottom: 5px;
}
.optional-sidebar-one .widget {
margin-bottom: 20px;
}
What am I doing wrong?