Site logo

Archived topic

changing Color of h6 in css

3 replies · Started by Katharina on June 2, 2019

Viewing posts 1–4 of 4

Hi I want to change the color of my heading but it's not changing.
My CSS is

.h6 {
    color:  rgba(142, 142, 142, 0.65);
}

But it's not working, I properly doing something wrong

Hi there,

try this CSS:

h6 {
    color:  rgba(142, 142, 142, 0.65);
}

h6 is a HTML element so it doesn't have the full stop like a .css-class

Thanks David,
I thought that the dot has to be there

Learned something new :)

You're very welcome :)

This archived topic is closed to new replies.