Home › Forums › CSS › Design changes (CSS) only on some pages of my website? › Re: Design changes (CSS) only on some pages of my website?
March 31, 2013 at 10:33 am
#130279
Participant
Are you able to edit HTML?
You could add a class to body element depending on what page you are on. So for your home page add `
`, and for each other page add appropriate class. Then in your CSS you can target each page individually..home .menu {}
.home .menu ul li {} //etc
.about .menu {}
.about .menu ul li {} //etc