I am currently designing a theme but my CSS styles are not being applied throughout the entire site.
It was suggested that my CSS lacks specificity, but the issue isn't that I can't override the default styles; the issue is that it's not using my custom style sheet. That can be proven because my styles work on certain pages.
I'm not sure what's causing the problem or how to fix it.
#Head {
background: #D6AD33;
padding: 0px;
}
/*Panels/Sidebars*/
.Box {
border-radius: 1px;
-moz-border-radius: 1px;
-webkit-border-radius: 1px;
background: #FFA366;
color: #888;
padding: 6px 10px;
margin: 0 0 10px;
box-shadow: 0px 0px 2px #999;
-moz-box-shadow: 0px 0px 2px #999;
-webkit-box-shadow: 0px 0px 2px #999;
}
.Box h4 {
font-size: 110%;
color: #FF6600;
font-weight: bold;
margin: 0;
padding: 0 0 1px;
}