Portfolio page - project title

hello!

i am so sorry that i ask a stupid question, but i really don’t know how to change it.
i use a illy theme, i want to let the project title change the color and size at portfolio page.
before i try:
.page-jetpack-portfolio .project-title {
font-size: 20px;
color:#fff;
}

but it not work. so how can it change it!
THanks!

Hello there,

I hope you are doing well today.

Upon inspecting the website, I found that the portfolio is using blog elements so that may be why the code you used is not working.
You can use the following CSS code to change the font color and size by going to Appearance > Customize > Additional CSS and pasting it there.


/*Portfolio title color and size*/
#blog .blog-post .blog-post-title {
    font-size: 30px;
    color: red;
}


Best Regards,
Support

HELLO!
thank you for your help!
the css doesn’t work! it just change the “portfolio”,
but i want to change the project-title font size!
i attach the pic that highlight the project-title.

ps. i sorry for my poor english!

thanks!

Hey again,
Thanks for keeping in touch with us.

Kindly add and save the following code to Appearance > Customize > Additional CSS instead of the previous code:

.portfolio-entry-title a {
    color: red!Important;
}

I hope this helps :slight_smile:

Best Regards,
Support.