I have 2 Views. I want to change Style of the 2nd Element when the first element is active WITHOUT Modifying the First Element
#sidebar.active {
margin-left: 0 !important;
}
#content{
padding-right:100px;
}
These are the 2 elements. When the SideBar is active, i want the Content of the page to get a padding of 100px on the right without changing anything from the sidebar
I know what i could do this
#sidebar.active , ##content {
margin-left: 0 !important;
padding-right:100px;
}
But this would give the Sidebar also a padding of 100px which i dont want. I want to affect the CONTENT ONLY when the SideBar is Active. Any help is appreciated