update: issue resolved. I discovered that there was a lingering media query in the css file that was meant to be removed. Also, I corrected some errors in the code. Thank you all for your help – it's now working perfectly.
I have a set of html and css code that is functioning as expected. However, when I added two media queries in the css file to make some style adjustments, none of the changes from the media queries seem to take effect. Here is the snippet of my media query code:
@media screen and (max-width: 975px){
body .top_outermost_container {
width: 976px;
}
}
@media screen and (max-height: 485px){
.bottom_bar {
top: 445px;
bottom: auto;
}
}
*/
I have shared the entire code here: http://codepen.io/anon/pen/CJgqI. Your insights are highly appreciated! Cheers. You guys are awesome. Note: To view the page properly, you may need to copy and paste the code into a text editor for better browser rendering quality. THANK YOU ONCE AGAIN!