lisovaccaro
lisovaccaro

Reputation: 33956

How do I make background images only show on home page?

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

Answers (1)

BoltClock
BoltClock

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

Related Questions