users online
i (try to) code themes myself and you're one of the people i look up to in this. you inspire me so much with your creativy. you're definitely with the people who are on the top and amazing, and i will forever envy you.

That’s crazy, omg. Thank you so much for these sweet words. I won’t spend time disagreeing with you because that simply bugs me when others do, I will just send you the biggest hug and say thank you! Sincerely. Your themes are beautiful. You’ve got that simplicity and clean look nailed to a tee!

hi, sorry to bother but i have a question about theme #7. i was wondering gif there was a way to make the links that appear below the description box disappear totally. if i change the color same as the sidebar then the links 1&2 disappear too :/

No worries. Got to Edit HTML and find this section:

.slinks {

height:auto; 

margin:auto;

width:235px;

line-height:140%;

-webkit-transition: all 0.7s ease; -moz-transition: all 0.7s ease; -o-transition: all 0.7s ease;

opacity:0; }

The bolded part is what you need to add in order to hide the links.

Heya! I love your themes. :3 question about 'page #002: tags list'. I was wondering if there was any way to put a line along the bottom of the table. if i'm not being clear enough let me know, i just couldn't think of any other way to word it. thanks. :)

Thank you! There is one way of doing it, but you’ll have to try it to see if it works for you; if you like it, I mean. Go into the code and find this part:

#table { 

    font-size:11px;

    margin:auto; 

    margin-top:-10px;

    text-transform:lowercase;

    line-height:150%;

    width:700px;

    border-bottom: 1px solid #f0f0f0;

    }

The bolded part is what I’ve added now. Just copy+paste it below “width:700px;” and it should work.

hey, I'm using theme #12 (which is really beautiful by the way!) and I was just wondering if there's a way to change the scroll bar to something thin kind of like on your theme (hellmouths) rather than the normal silver scroll bar? I'm not sure if this makes sense, but anyway thank you if you get round to answering this :)

For some reason I’ve forgotten to add the code to theme #12 which controls the scrollbar. Sorry about that. I’ve changed the code in pastebin but if you’d rather add it yourself, go to Customize > Edit HTML and find the part that says <style>

Right below <style>, add this code:

/* SCROLLBAR */

::-webkit-scrollbar {width:3px; height:auto; background:transparent;}

::-webkit-scrollbar-corner {background:{color: scrollbar};}

::-webkit-scrollbar-thumb:vertical {background:{color: scrollbar};}

::-webkit-scrollbar-thumb:horizontal {background:{color: scrollbar};}

1 of 14