How can I change the title font in HTML template

Hi There,

Thanks for reaching out to us.

With HTML templates, there is no dashboard to modify the content/design and you will need to manually modify the files.

As for the title font, you will need to modify the CSS file to change the case to Small/Caps. using the text-transform as follows.

.single-blog .short_details a {
    text-transform: initial;
}

On the links, you will need to modify the anchor tags on the specific files.

Hope this helps.