3R3 wrote:I found one bug though, the shortcut arrows to jump to the top from anywhere in the index in the left pane do not work at all, at least for me. Browser is Google Chrome, but since the other themes work and both of your Groove ones dont, i think its some css bug.
Maybe you could put a short "install notes/readme" in the archive of your theme? it took me a while to figure out how to integrate it...3
-added a readme/install note
i noticed, and also the shortcut letters do not work, i think it's because of the custom scrollbars. in browsers based on webkit like safari and chrome you can now customize scrollbars with css code, in opera,firefox,ie you don't see the scrollbars and the shortcut arrows and letters works fine. i'm not that familiar with css, only know some basic stuff and i'm not sure how to fix it. i will try the best i can but if someone else knows please post how to fix it.
i searched the web to find the code for the scrollbars and inserted it. heres the code for scrollbars (vertical scrolling is also disabled but can be fixed på changing "overflow-x: hidden; to "auto or scroll"):
body {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 10px;
overflow-y: auto;
overflow-x: hidden;
}
html {
overflow-y: auto;
background-color: transparent;
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
height: 30px;
display: block;
background-color: transparent;
}
::-webkit-scrollbar-track-piece {
background-color: #3b3b3b;
-webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical {
height: 50px;
background-color: #666;
border: 1px solid #eee;
-webkit-border-radius: 6px;
}