hello, rabbit! i've been trying to finish my first theme and i have a doubt! how can i change, like, the POSTS TITLE font and size? btw, all of your tutorials are so useful and they helped me a lot, so thank you very much! XX
Hi there! I’m so glad to have been of help!
What you’re looking to customize is the {Title} variable inside the Posts block ({block:Posts}{/block:Posts}). It’ll look something like this (from the Tumblr theme documentation):
{block:Title}
{Title}
{/block:Title}
You need to add an HTML tag of some kind in order to customize these! As you can see, in the example,
is used. In my own theme markup, I use
. You can use whatever you like--even a div class!--and then customize it by targeting it in the CSS, e.g.
h3 { font-family:’courier new’, monospace; font-size:20px; letter-spacing:2px; this:is just an example; use:whatever you’d like;}
You can use the same HTML tag to make your titles uniform in your Chat posts as well, where the {Title} variable is also used.
I hope this is helpful! I know that Tumblr markup is a bit finicky/hard to read, so let me know if I can clarify anything for you.











