• Can I change the default color of the title text with css? And another question, I use this code to change “read more” button color:
    .pt-cv-readmore {
    color: YOUR_COLOR !important;
    background-color: YOUR_COLOR !important;
    border: none !important;
    }
    but the color I want isn’t listed. Is it possible to change with RGB instead?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Content Views

    (@pt-guy)

    Hello,
    You can change color of title text with this:

    
    .pt-cv-title, .pt-cv-title a {
    color: YOUR_COLOR !important;
    }
    

    Sure, you can use RGB for YOUR_COLOR in CSS.

    Best regards,

    Thread Starter tornike95

    (@tornike95)

    Seems my code is incorrect. What would be the correct code for RGB?
    Now I use this code:
    .pt-cv-readmore {
    color: white !important;
    background-color: steelblue !important;
    border: none !important;
    }
    But when I type RGB 33,77,116 instead steelblue, I get error message “Expected (<color>) but found ‘RGB 33,77,116’ “

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Title text color’ is closed to new replies.