Reputation: 33956
I added this background to body later to realize I wanted it only to appear on the front page. How do I do it?
background: url(/Imagenes/tipbusca.png) 10px 400px no-repeat, url(/Imagenes/tippublica.png) 96% 200px no-repeat;
Thanks
Upvotes: 2
Views: 9721
Reputation: 723598
Give a class to body
for just the home page then target that class:
body.home {
background: url(/Imagenes/tipbusca.png) 10px 400px no-repeat, url(/Imagenes/tippublica.png) 96% 200px no-repeat;
}
Upvotes: 5