I want to use this class throughout the site layout, less on the main screen because there has an image that needs to be at the top, ie (padding-top: 0px).
Class I need to remove on a screen:
body {
padding-top: 50px;
padding-bottom: 20px;
}
The jQuery function I created to do this and it did not work.
$(document).ready(function () {
$("#intro").removeClass("body");
});
NOTE: intro is the id of the image that at the top (0px)