I am working in a premium wordpress theme... It is a complex wordpress theme with lots of admin features so i feel very difficult to edit... Now i need to move a sidebar upwards only in homepage... i use this code...
.classname{
position:relative;
top:-300;
}
But the code above is moving the sidebar on all pages... since the site is complex i don't know where to add specific class name for sidebar in homepage... So i decided to use jQuery to find whether the page is home page or not... if it is homepage then i move the sidebar upwards, else not...
Please say me how to find whether the page is homepage or not using jQuery...