How to Change the Portfolio Title Sizes

Hello
How can I change the sizes of the Portfolio title and the size of the titles in each of the portfolio items?
Also, can the line that borders the title be removed?
Thanks!
Brian
Screenshot 2024-03-19 at 11.35.53 PM

Hi @moosebrain,

Thanks for reaching out.
To remove the line and adjust the font size, please add the following code to the Global CSS. You may need to adjust the font size as per your requirements.

.h-landmark span::before,
.h-landmark span::after
{
    display: none !important;
}
h2.entry-title.entry-title-portfolio
{
    font-size:10px !important;
}

Hope it helps.
Thanks

Thanks.
I’m looking through the documentation and struggling to find where to add this to the Global CSS.
Can you point me to it?

Also, how do I change the size of the main title?
From what I can see, i think it’s h-landmark?

(Time for me to learn CSS)
Thanks for your help

Hi @moosebrain,

Please find the screenshot showing the Global CSS option, where you can add the custom CSS code which will apply all over the site.

Thanks

thanks!

do you have a recommendation for a quick start to learning CSS?

Hey @moosebrain,

To learn CSS, you can check these articles.

Hope that helps.

Fantastic!
Thanks very much

Hi @moosebrain,

Glad that we are able to help you.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.