Andreea Vociu
Andreea Vociu

Reputation: 5

How can I change the color just for this page?

I have this page:

http://cristianfertea.ro/event/sss/

This is code CSS:

  .qem-medium
{
background:#fed327 ;
}

For this page I want to be blue backgound:

For the rest I want to remain yellow pages.

I try but not working.

#8956 .gem-medium
{
background:red !important;
}

Can you help me to solve this problem?

Thanks in advance!

Upvotes: 0

Views: 28

Answers (1)

Paulie_D
Paulie_D

Reputation: 114991

That specific page has a specific class which would seem to be ideal

.postid-8597

So I would suggest

body.postid-8597 {
background-color: #fed327
}

Upvotes: 1

Related Questions