Hi,
could you please explain or show me how it works to fill in css class for special settings.
I want to change the font-weight of headline in the specific headline and also in the rotation headline and in some parts also to change the color of the specific headline. I have tried to fill in the css name like “h2-fett” and then tried to fill it in the quick css like :
#top .h2-fett {
font-weight: 300;
}
but it doesn’t work – can you please help me again?
Thanks!
Hey Createve_Solutions,
The class is added to the container, you need to target the actual h2 element like this:
.h2-fett h2 {
font-weight: 300;
}
Best regards,
Rikard