I have a same class in multiple pages. And I have a control on css though which I can change the property of the css.
div.single-column div.middle {
padding: 10px 20px;
clear: both;
position: relative;
top: 70px;
}
In one page I want to make top:70px
and rest of the pages I want it top:0
Is there any way I can control this through JavaScript on one page?
in your css make a default
top : 0px;
and in your page you want
top : 70px
just add in this page