I want to change my div style on my current URL.
if I am on my home page.
div.layout-column.column-main.with-column-1.with-column-2{
width:790;
}
if I am on some other page except my home page so I want my class like this.
div.layout-column.column-main.with-column-1.with-column-2{
width:590;
}
I tried it but I don't get proper output.
if (window.location.href == 'http://easyapuestas.com/')
{
// alert("hiiii");
document.write("<style>" +
"div.layout-column.column-main.with-column-1.with-column-2{" +
" width: 790px;" +
"}" +
"</style>");
}
if (window.location.href !== 'http://easyapuestas.com')
{
// alert(window.location.href);
document.write("<style>" +
"div.layout-column.column-main.with-column-1.with-column-2{" +
" width: 590px;" +
"}" +
"</style>");
}