✖ ask sumi
Please read these before you send me any kind of message(s)!
- I finally made a resources list that gets updated from time to time.
- You can backtrack my previously answered messages right here.
- Scroll this page to see the main faq. The anwer to your question might exist already.
- 90% of the “I need help with this and that”-messages I get go into my “faq” tag, check it out!
- I can’t really stand fan mails, because they’re so inconvenient to respond to so I’d prefer to not see them in my ask. Unless you hit your ask limit or want to share a link.
- I do take tutorial requests, but you should know it might take me forever to post them due to a busy personal life. (At the moment) I don’t take graphics requests! Not when I say so otherwise.
- I can’t deal with dozen of theme code problems just because I happen to know a little bit about html. At least try to confront the theme maker of your theme first, that’s what they are there for. But I’m still willing to help out with general code difficulties that might be of use for everyone.
- Since I make photoshop tutorials you can of course ask me photoshop related questions, I’ll do my best to respond to them, but remember I ain’t no photoshop genius.
- “Can you recommend (insert fandom/group/bias) blogs?” kinda messages are rather bothering and I instantly forget every single blog I ever followed so how about you just take a look at my blogroll instead :)
- If you see a copyright symbol on my blog then yes, you’ll find the theme code once you click that symbol, but if you can’t detect any then the theme is basically made by me. Had to clarify this to stop the endless “Where’s your theme from?” messages.
The submission form below is only meant for links or pictures.Don’t use it for simple questions/messages you could have asked via ask.
MAIN FAQ
Contains only one of my first html related questions, more to be find in the #faq tag.

- How do I put links in my description?
Normal link
<a href=”URL”>YOUR TEXT</a>
Linked picture
<a href=”URL”><img src=”PICTURE URL”></a>

- How did you get that donut next to your title?
It’s called “favicon” Add this after <head>
<link rel=”shortcut icon” href=”PIC URL”>

- How to create a colorful scrollbar?
#ffffff → white & #cdcdcd → gray
And put it into your css section (<style> … </style>)
::-webkit-scrollbar {width: 15px; height: 4px; background-color: #ffffff;}
::-webkit-scrollbar-thumb {background-color: #cdcdcd; border-top: 1px solid 000000;}

- How to make the follow and dashboard button transparent?
Copy+paste this code into your css section <style> … </style>
iframe#tumblr_controls {
right:3px !important;
position: fixed !important;
-webkit-transition: opacity 0.7s linear;
opacity: 0.2;
-webkit-transition: all 0.8s ease-out;
-moz-transition: all 0.8s ease-out;
transition: all 0.8s ease-out;}
iframe#tumblr_controls:hover{
-webkit-transition: opacity 0.7s linear;
opacity: 1;
-webkit-transition: all 0.4s ease-out;
-moz-transition: all 0.4s ease-out;
transition: all 0.4s ease-out;}

1) With tags
- Create a new post (for example about your personal issues)
- Tag the post with “personal”
- Got to your tumblog url and add /tagged/personal to it (yourblog.tumblr.com/tagged/personal)
- Every post tagged with “personal” will show up.
- Same for pictures! Just tag them with a specific tag and they’ll show up when you track the tag on your blog.
2) The normal way
- Go to your customize page
- Click on “pages” -> “add a page”
- Create a page just like a post, it’ll also show you the page’s url etc.

- What’s the code for the “right click disable”?
Add this script right after <head> in your theme code…
<script language=JavaScript> var message=”Function Disabled!”; function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function(“alert(message);return false”) </script>
