Radiant - Responsive Theme for Tumblr
Themeforest Radiant - Responsive Theme for Tumblr Blogging Theme
Features
- Retina icons for a clean display on your iOS device.
- All posts types supported, with responsive photoset layout.
- Custom colors with infinite combinations.
- Custom Google fonts
- Social Links
- Disqus Comments
- Twitter widget
Credits
- Icons Sweet 2 – http://www.iconsweets2.com
- PXU Photoset Extented – https://github.com/PixelUnion/Extended-Tumblr-Photoset
- Google Fonts – http://www.google.com/webfonts
templates are very special to me.
ReplyDeletecongratulations buddy
Nice.
ReplyDeleteThanks !
ReplyDeleteThanks for the awesome support and I really love your themes!
ReplyDeleteThank you, much appreciated
ReplyDeleteHi. absolutely love the theme. great work. just need help on one thing, where do i adjust content font size? thanks
ReplyDeleteHey I replied to you on Tumblr, but I’m replying here too in case other users would need to know.
ReplyDeleteAdd the following lines in the Add Custom CSS field to changes font-size for content :
body{
font-size:16px;
}
with your own value.
Or with these lines if you just want posts font size to change (it won’t affect sidebars then)
.item{
font-size:16px;
}
If it’s not working as it should, add !important, like this :
.item{
font-size:16px !important;
}
Question—Is there a setting in your theme that’s preventing the “edit” button from appearing on a post when logged in? It’s enabled on my other Tumblr blogs, but can’t see an option in the native settings that controls this.
ReplyDeleteThanks.
The area that shows EDIT as well as FOLLOW and other things isn’t a part of the theme, it’s something that is added by Tumblr once the theme is loaded. It can’t be edited, the only thing you can do is move or hide the whole thing (including the follow button) with CSS, but people won’t have a follow option then.
ReplyDeleteThe EDIT button is only displayed for you as the author of the post though, but I don’t know about others authors of your blog, I didn’t test that and I’m not familiar with it.
Another question - and the solution might be too complex - I have three authors sharing this blog, each of whom have social media contact info. Is there a way in the code to duplicate the “Follow Me’ box several times, and allow the “me” text to be editable?
ReplyDeleteAs an experiment, I’ve gone into the code and just tried changing:
{lang:Follow me}
to
{lang:Follow us}
But it makes the title disappear altogether
It can be done with some line editing.
ReplyDeleteFirst, go to line 1963 and copy from that line to line 1984
Content of copy :
<section class="follow sb-item">
<h3>{lang:Follow me}</h3>
<p>
{block:IfRSSFeedIcon}<a href="{RSS}" class="rss" title="{lang:Feed}"><span /></a>{/block:IfRSSFeedIcon}
...
{block:IfSteamID}<a href="http://steamcommunity.com/id/{text:Steam ID}" class="steam" title="Steam"><span /></a>{/block:IfSteamID}
</p>
</section>
Copy this on the next line, before {/block:IfSocialFollowIcons}.
Remove the line {block:IfRSSFeedIcon}...{/block:IfRSSFeedIcon} with its content on the copy.
On every other line, add a number at the end of each mention to a username to add.
Example :
{block:IfFacebookUsername}<a href="http://www.facebook.com/{text:Facebook Username}" class="facebook" title="Facebook"><span /></a>{/block:IfFacebookUsername}
would become on the copy
{block:IfFacebookUsername2}<a href="http://www.facebook.com/{text:Facebook Username 2}" class="facebook" title="Facebook"><span /></a>{/block:IfFacebookUsername2}
For every copy, along with the original, change <h3>{lang:Follow me}</h3> by <h3>Follow "Username"</h3> and specify a different author username each time.
Finally, go to line 110 and copy everything to line 127
<!-- Social -->
<meta name='text:Facebook Username' content='' />
<meta name='text:Twitter Username' content='' />
....
<meta name='text:Youtube Channel ID' content='' />
<meta name='text:Steam ID' content='' />
and paste it right below it. On the copy, change on each line the string by adding the number you added in the previous step.
<meta name='text:Facebook Username' content='' />
would become on the copy
<meta name='text:Facebook Username 2' content='' />
repeat the steps above as many time as necessary, by changing the number on each copy (Facebook Username 3, Facebook Username 4, ...)
Save your theme. Close the customization panel and open it again, you may now be able to see new text fields for the options you added.
Try and tell me if this works.
Save your changes on a separate file, because all changes you made on the code are lost when a new version is installed, so keep them somewhere as well as these instructions so you can easily do it back again.
Cool, I will try this as soon as I get home and let you know. Thank you for the quick response!
ReplyDeleteHelp! Can’t get the tweets to show up on the right hand-side. I signed in with Twitter and set the Tweets to display to 5.
ReplyDeleteLooks like there is a bug I need to fix. In the meantime, could you try without any value set for “Tweets to display” ? Just let the field blank. And then tell me if twitter feed shows up.
ReplyDelete