Minor Theme Fixes

NuitTombee

Immortal Capo
#1
I was wondering if these could be implemented somehow, they're quite small in the grand scheme of things, but eventually could be done.

[hr]

Normal Theme (Light Default)
//This code moves the Quick Theme selector up 18px to let the language selector have some space.//
Code:
span.trow2 {
    margin-top: -18px;
}
//This code moves the Language selector up and to the right 5px to realign it.//
Code:
#lang_select {
    margin: -5px;
}
//This bit removes the space from the right side of the New Reply button, to better align it with the side of the posts/threads.//
Code:
div.tbut {
    margin-right: 0px;
}
I made the window approximately 1024 px wide to take into account even people with smaller resolutions.





[hr]

Fallback

//This code moves the Language selector up and to the right 5px to realign it. (Just as with the other theme.)//
Code:
#lang_select {
    margin: -5px;
}
 
Top