css how to change font color inside a div code example
Example 1: text color css
.class {
color: white;
}
Example 2: change text in a div css
.pvw-title span {
display: none;
}
.pvw-title:after {
content: 'whatever it is you want to add';
}