I am not familiar with @media requests, and what I am trying to do is responsive delete / change some CSS when browsing the browser is reduced below a certain resolution, or the mobile device viewing the page is also below the same specified resolution.
I need .side remove float: left; position: fixed; width: 150px; float: left; position: fixed; width: 150px; with a resolution of 500 pixels wide and .main to remove border-left: 1px solid #000; margin: 0 0 0 170px; border-left: 1px solid #000; margin: 0 0 0 170px;
.side { display: block; float: left; overflow: hidden; position: fixed; width: 150px; } .main { border-left: 1px solid #000; margin: 0 0 0 170px; }
Any help or explanation is appreciated.
source share