Page 11 of 11

Posted: Sat Sep 22, 2007 3:53 pm
by molitar
The v2 style for HaruhiStyleX menu is way too tall. When viewing on a 1024 screen resolution the rest of the menu is off screen. Most people still use 1024 resolution and would look much better if the fonts were a bit smaller and the menu didn't take the entire left side of the screen.

LuckyStyle

Posted: Mon Oct 15, 2007 8:43 pm
by Breadstone
Hi,
some people may have noticed that a new Style is available..the LuckyStyle..well...
I was quite happy to see that we all can choose it so early but now I see that there are some problems...well...only two (for now).

The first one will be taken care of tomorrow..it's the textarea (the field where you write your stuff in when you want to send a message or a comment ;) )...which is black and...well..it has a black textcolor xD .. sorry guys

The second is bigger. We had some problems with it while scripting an now IT HAS COME BACK TO KILL US ALL...*cough* I'm speaking about the buttons.
I have no idea why some buttons like the logout/profile buttons are not visible or why the ask2 button is orange (I've made a new one).

I hope that some of you can help me..maybe even look inside the css and tell me what the hell I've done wrong ^^.

Thanks,
Breadstone

Edit (16.10.07)
It seem that a new problem did occur (thanks for the tip, chiyochan): "Problem 2)
I can`t click on the "text area" on the new message page. Needed to press tab a few times to write this message >_<"

I have no idea how to get rid of it...and i also don't know how to change the textcolor in this window (yeah i'm not good at scripting).

I hope you guys can help me (otherwise it could take quite a long time).
The css can be found (watch..don't touch :P) on AniDB SVN.

Posted: Tue Oct 16, 2007 11:22 pm
by hai2leV2
yup, LuckyStyle is hot. Thank you Breadstone :D

Re: LuckyStyle

Posted: Wed Oct 17, 2007 12:49 am
by Rar
Breadstone wrote: I have no idea why some buttons like the logout/profile buttons are not visible...
Looking just at the computed styles of the profile button,

Code: Select all

background-image: url(http://static.anidb.net/css/luckystyle/images/Buttons/button_profile.gif);
color: white;
display: block;
float: left;
height: 12px;
margin-right: 4px;
text-decoration: none;
text-indent: -5000px;
width: 42px;
The image is a 404 currently, and the text is being shunted out of the way by the -5000px indent. Hence, nothing visible. Either make the image exist (by putting an image in the right place, or changing the link), or override the button code so it's just a plain link again.

Rar