How to install theme and automatically reset default
1. Open customize page click edit html

2. Delete the all entire code and type anything in the box
3. Click “update preview”
4. Click “save” (you can see the theme is just blank with the word you put)
5. Click “refresh button”

6. Copy the new theme code and paste in the html box (delete/replace the anything word before)
7. click “update preview” and save. (you can see the theme is still mess but don’t worry, just save it first.)
8. click “refresh button” an see your blog. DONE

** YOU CAN USE THIS TO RESET DEFAULT ON YOUR CURRENT THEME
can you help me?
hey guys.. i need your help again, i just made a new redirect/moved theme,
in this theme you need to slide the arrow button to redirect to your new URL, i have test on google chrome and mozilla firefox browser and it’s work fine, so if you use another browser, pls tell me if the slider work on your browser or not.
ASK BOX IS NOW OPEN
since i have time on this week, i open the askbox, i will respond as soon as possible if you ask me nicely :)
Instant “LIKE” Button on Blog

1. Copy and paste this code BEFORE </head> tag.
<style>
.my-like {
background-image: url(http://static.tumblr.com/b8yqvki/yxFmajxa5/amandarickathemeunliked.png) !important;
height:20px;
width:21px;
cursor:pointer;
display:inline-block;
vertical-align:top;
}
.my-liked, .my-like:hover {
background-image: url(http://static.tumblr.com/b8yqvki/CCTmajxau/amandarickathemeliked.png) !important;
height:20px;
width:21px;
cursor:pointer;
display:inline-block;
vertical-align:top;
}
</style>
<script>
window.onload = function () {
document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
document.addEventListener( 'click', function ( event ) {
var myLike = event.target;
if( myLike.className.indexOf( 'my-like' ) > -1 ) {
var frame = document.getElementById( 'my-like-frame' ),
liked = ( myLike.className == 'my-liked' ),
command = liked ? 'unlike' : 'like',
reblog = myLike.getAttribute( 'data-reblog' ),
id = myLike.getAttribute( 'data-id' ),
oauth = reblog.slice( -8 );
frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
};
}, false );
};
</script>
2. Then put this code between {block:Posts} and {/block:Posts}. Usually close/near to reblog button.
<div class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}" title="Like"></div>
3. Save and see your page if its work or not. If not work, maybe you put the step 2 code in wrong place, so try to move them until the code work but the code must in between {block:Posts} and {/block:Posts}. Just do experiment with yourself ;).
Text Effect
Ok guys.. here are some text effect you can apply on your theme.
Shadow Text Effect Part II
MORE SHADOW TEXT EFFECT
PREVIEW SAMPLE PART II PART 1 HERE
10. LETTER PRESS TEXT EFFECT
**font: rgba(0,0,0,0.6);
text-shadow:1px 1px 2px rgba(255,255,255,0.1);
11. EMBOSSED TEXT EFFECT
**font: #transparent;
text-shadow:-1px -1px 1px #fff, 1px 1px 1px #000; color: #696969; opacity: 0.2;
12. NEON GLOWING TEXT EFFECT
**font: #fff;
text-shadow:0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #ff2d95, 0 0 30px #ff2d95, 0 0 40px #ff2d95, 0 0 50px #ff2d95, 0 0 75px #ff2d95;
13. BURNING TEXT EFFECT
**font: #fff;
text-shadow:0px -1px 4px white, 0px -2px 10px yellow, 0px -10px 20px #ff8000, 0px -18px 40px red;
14. CLOUDY TEXT EFFECT
**font: rgba(255,255,255,0);
text-shadow:0px 0px 10px rgba(255,255,255,0.6), 0px 0px 30px rgba(255,255,255,0.4), 0px 0px 50px rgba(255,255,255,0.3), 0px 0px 180px rgba(255,255,255,0.3);
Shadow Text Effect
Here are some Shadow Text Effect you can apply on you theme, you can use for Title, Link or Text Post and etc..
- Copy and paste the code under font section you want to add shadow. example for Title, find the title font tag and just add the code under that section

- The font color below is the color that i use in Preview Sample, you can tweak as you like to match your background. ( **font: #000000; )
1. 3D TEXT EFFECT
**font: #696969;
text-shadow: 0px 2px 0px #999, 0px 2px 0px #888, 0px 3px 0px #777, 0px 4px 0px #666, 0px 4px 0px #555, 0px 5px 0px #444, 0px 6px 0px #333, 0px 7px 6px #001135;
2. MULTIPLE TEXT EFFECT
**font: #000000;
text-shadow: 0.2em 0.5em 0.1em #9C9C9C,-0.3em 0.1em 0.1em #696969,0.4em -0.3em 0.1em #363636;
3. MULTIPLE TEXT EFFECT II
**font: #1E90FF;
text-shadow: -10px 10px 0px #00e6e6,-20px 20px 0px #01cccc,-30px 30px 0px #00bdbd;
4. DROP SHADOW
**font: #FF1493;
text-shadow:5px 5px 5px rgba(5,5,5,5);
5. RETRO DROP SHADOW
**font: #DA70D6;
text-shadow:3px 3px 0px #9400D3, 6px 6px 1px #9370DB;
6. OUTLINE TEXT EFFECT (3D GLASSES EFFECT)
**font: black;
text-shadow:-3px 0 red, 0 3px blue;
7. READABLE WHITE TEXT EFFECT
**font: white;
text-shadow:0px 0px 7px #828282;
8. READABLE WHITE TEXT WITH SHADOW EFFECT
**font: white;
text-shadow:color: white; text-shadow: black 0.1em 0.1em 0.2em;
9. GLOWING TEXT EFFECT
**font: #68228B;
text-shadow:1px 1px 15px #8B008B;
For Normal Hover
text-shadow:0px 0px 7px rgba(0,0,0,0.5);
**put this code in hover section if you want the text will change when you hover them, you can choose any shadow code above too.
HOW TO TWEAK THE SHADOW AND COLOR


How to find CUSTOMIZE on new dashboard


Index Tutorials
For Theme Docs
- Energy Saving Mode
- Welcome Message
- Putting A Background
- Putting A Header
- Endless Scroll
- Disable Right Click
- Fading Image
- Reblog Button On Your Post
- Cursor
- Scroll To Top Button
- Recommend Button
- Stylish Scrollbar / Scrollbar With Image
- Pop Up Ask Box
- Sparkle Link Hover
- Rainbow Link Hover
- Typing Moving Title Bar
- Fix & Move “Follow / Dashboard” Button
- How To Add Hyphen On The Tumblr URL
- Show Stat Code
- Blogroll / Tumblr Roll Page
- Shaking Image
- Scroll To Top / Bottom / Home Button
- How To Stretch Background Image
For Description
- Background Music
[ ✓Youtube Player✓SCM Player✓ MixPod ✓ Streampad ] - Ask Box In Description/Sidebar
- Twitter Badge
- Chat Box
- Make A Link
- Hit Counter And User Online
- Scroll Box
- Navigation Bars
- Sliding Drop Down Menu
- Sliding Drop Down Menu With Image
- Scrolling Image / Image Marquee
For Dashboard
- Missing e 1.5.7 [update]
[ ✓ Unfollower List. ✓ Follow Checker. ✓ Bookmark. ✓ Magnify. ✓ Reblog Yourself. ✓ Safe Dash. ✓ Time Stamp. ✓ Post Tumblr Crush. ✓Jump To Dash. ✓ Ask Box In Dashboard. ✓ Enlarge Tumblr Avatar. ✓ Slim Sidebar. ✓ One Click Reblog. ✓ Mass Editor Tweaks etc ] - Dashboard / Log-in Background
- Others
Basic / For Posting
- Basic HTML Code
- Marquee
- Change URL
- Hide Following People
- Follow Yourself
- Answer Questions With Image/Gifs
- Let People Answer Your Post
- Link Tag Post
- Make A Page
- Music Posting
- Number of post to show on your blog
- Enable Ask Box (for new dashboard)
Others
- Image For Saving Energy / Standby Mode
- Track Anonymous Ask
- Redirect To a New URL
- Delete Secondary Blog
- Tumblr Status
- Disable Follow Button
- Mapping Image / Image Map
- Background Layout
- Facebook Things
- Theme Recover
- Theme
- Icons / Buttons
- Old Customize Page
(via academyoftumblr)
Know Your Anon
I found this site this morning. Just go to this page http://untitledthemes.com/knowanon and follow the instruction.
how it works? when someone send you a message as anonymous, you will receive the message with their username! but for people who aren’t logged in on tumblr will still appear as an anon.
While this doesn’t violate any of Tumblr’s terms and conditions, it’s advised you only use this if you really need to know who an anon is, preferably one sending hate, they deserve to be exposed. All this hack does is trick the sender into thinking they’re anonymously sending a message by overlaying two ask boxes.
p/s: Please make it secret, once people know they may never message you again.
pss: i’m not gonna answer question about this ok.


