Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Design changes (CSS) only on some pages of my website? Re: Design changes (CSS) only on some pages of my website?

#130279
Alen
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