Hello, I'm making a theme and I'm trying to use unnest, but somehow I can't manage the caption to be in the same line as the writer's name like you did in your 'mercurial' theme, can you give me a light? Thank you!
Hi! Paragraphs display in blocks by default, so youâll have to add a display:inline; to your captionsâ paragraphs.
.tumblr_parent p {display:inline;}
I didnât want to break the functionality of paragraphing though so I only had the first paragraph display as inline:
.tumblr_parent p:first-of-type {display:inline;}
or you could have:
.tumblr_parent > a.tumblr_blog + p:first-of-type {display:inline;}
to only have those paragraphs directly following the username link display as inline.
Hope this helped you out











