Hi,
I have some trouble styling the font-color in Portfolio.
First problem is about the header, I tried this Quick-CSS code, but the font-color did not change (everything else works fine):
/* Portfolio title centre */
.portfolio-preview-title {
text-align: center;
font-weight: 200;
font-color: #666666
}
Second Problem is about the dots when making a listing, they do not change color when changing the text color. So I do have a grey text and blue listing points.
Thank you for help!
Gerke
Hey C2S16,
Try with this code:
.portfolio-preview-title {
text-align: center;
font-weight: 200;
color: #666666;
}
Best regards,
Josue