That theme doesn’t have codes for the title to show up. If you’d like it to be in your sidebar, you can just put it in your description.
No bother at all! Their theme is theme 008 - shortcake. :-)
The easiest way would be to follow these instructions.
No, it’s actually fairly simple. But thank you BUCKETS for paying attention to that rule!
Find this:
.user_1 .label {color:{color:link}; text-transform:uppercase; font-weight:bold}
.user_2 .label {color:{color:title}; text-transform:uppercase; font-weight:bold}
and replace it with this:
.user_1 .label {color:{color:link}; text-transform:uppercase; font-weight:bold}
.user_2 .label {color:{color:title}; text-transform:uppercase; font-weight:bold}
.user_3 .label {color:{color:link}; text-transform:uppercase; font-weight:bold}
.user_4 .label {color:{color:title}; text-transform:uppercase; font-weight:bold}
.user_5 .label {color:{color:link}; text-transform:uppercase; font-weight:bold}
.user_6 .label {color:{color:title}; text-transform:uppercase; font-weight:bold}
That should do the trick. :-)
APPLICABLE TO THEMES: 004, 008, 009, 010, 013, 015
I’ve gotten a couple of asks about this type of thing in the past, so I finally wrote up a tutorial of how to do it. I hope everyone finds it helpful!
There’s a version of theme 008 with the tags under the posts on my pastebin here. :-)
Thank you for the compliment, and for the detail of this question. It makes it so much easier to help. :-) The easiest way to do what you’re looking to would be to tag all of your oneshot posts with the same tag (ei: “oneshots”) and have your circle link direct to just:
/tagged/oneshots
Does that make sense? I hope this helps! If you’re still stuck, just let me know and I’ll try to be more clear. :-)
Anonymous asked:
heya, so, I’m trying to use theme 008 but none of it is like..working. I’m new to tumblr, so I’m a massive noob. my b/g is grey, the circles don’t show up around the links, ‘georgia’ isn’t coming up as the font and the sidebar is like.. not there. I know I’m probably doing something massively wrong here.. help?
Wow, really? Yikes! I really have no idea what could be going on… Could you come off anon so I can look at your blog? You could also try re-copying the codes. Delete everything from the html FIRST and then copy them. Maybe that would help.
Thank for you your kind words! :D I just went to your blog and everything looked alright to me. It could be that if you have a smaller screen (admittedly I have an unusually big one), your pagination could be hidden if your sidebar is long enough. Try shortening your description a bit and see if it comes back.
I’m assuming you mean the fancier html for audio posts seen in themes 11 and 12. First, copy the following:
#audio {width:500px; height:105px; margin-bottom:5px}
.albumart {width:100px; height:100px; position:absolute}
.albumart img {width:100px; height:100px; float:left}
.player {margin-left:110px; margin-top:5px; float:left}
.audioinfo {margin-left:110px; margin-top:8px; float:left}
And stick it into the html here:

Then find this:
{block:Audio}<span class=”audio”><center>{AudioPlayerWhite}</center></span>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
And replace it with this:
{block:Audio}
<div id=”audio”><div class=”albumart”>{block:AlbumArt}<img src=”{AlbumArtURL}”>{/block:AlbumArt}</div><div class=”player”><span class=”audio”><center>{AudioPlayerWhite}</center></span></div>
<div class=”audioinfo”>{block:TrackName}<b>Song:</b> {TrackName}{/block:TrackName}
{block:Artist}<br><b>Artist:</b> {Artist}{/block:Artist}
{block:Album}<br><b>Album:</b> {Album}{/block:Album}
<br>{PlayCountWithLabel}
</div></div>
{block:Caption}{Caption}{/block:Caption}
{/block:Audio}
If that’s not what you meant, just let me know!