| View previous topic :: View next topic |
| The new mordant site: |
| Sucks! |
|
0% |
[ 0 ] |
| Roxors! |
|
75% |
[ 6 ] |
| is ok... |
|
12% |
[ 1 ] |
| The Hurricane should redesign it. |
|
12% |
[ 1 ] |
|
| Total Votes : 8 |
|
| Author |
Message |
smeat! Mordant Ruler


Joined: 27 Feb 2002 Posts: 417 Location: The heights of Columbia
|
Posted: Sun Mar 14, 2004 11:20 pm Post subject: Mordant redsign |
|
|
I posted the newest redesign of the mordant.com homepage. Everyone should tell me what you think of it. The website is also in our new content management system as well.
smeat! _________________ d00000D!!11 i fukd u! Bend over u h0z3r!!1111 |
|
| Back to top |
|
 |
tizmo Mordant Elite

Joined: 27 Feb 2002 Posts: 558 Location: The Communist Conglomoration of Virginia
|
Posted: Tue Mar 16, 2004 9:52 pm Post subject: |
|
|
I think it looks really clean. I like it!
Tizmo |
|
| Back to top |
|
 |
subgenious Mordant Peasant


Joined: 27 Feb 2002 Posts: 100 Location: St. Paul
|
Posted: Thu Apr 01, 2004 2:26 pm Post subject: |
|
|
Looks freaking good mang. My only beef is that the cursor doesn't automatically go to the username prompt and my lazy ass has to click on it. Funk that. _________________ Saving the world, one electron at a time. |
|
| Back to top |
|
 |
tid242 Mordant God


Joined: 27 Feb 2002 Posts: 1964 Location: Minneapolis
|
Posted: Fri Apr 02, 2004 11:49 am Post subject: |
|
|
| subgenious wrote: | | Looks freaking good mang. My only beef is that the cursor doesn't automatically go to the username prompt and my lazy ass has to click on it. Funk that. |
Ditto that yo'
-tid242 _________________ Sapere aude |
|
| Back to top |
|
 |
tizmo Mordant Elite

Joined: 27 Feb 2002 Posts: 558 Location: The Communist Conglomoration of Virginia
|
Posted: Fri Apr 02, 2004 11:50 am Post subject: |
|
|
| subgenious wrote: | | Looks freaking good mang. My only beef is that the cursor doesn't automatically go to the username prompt and my lazy ass has to click on it. Funk that. |
Smeat, if you want to make subgenious's wish come true, let me know. I know how to make it happen.
Tizmo |
|
| Back to top |
|
 |
reddog Mordant Merchant


Joined: 28 Feb 2002 Posts: 311 Location: BP BABY!
|
Posted: Fri Apr 02, 2004 12:03 pm Post subject: |
|
|
it's all good, but why does it take like 5 mins to login in? It's been like that for a while. Like i click it and then about 2 mins later it finally goes. Just thought i would mention that. _________________ sLaVe To SoCiEtY |
|
| Back to top |
|
 |
tid242 Mordant God


Joined: 27 Feb 2002 Posts: 1964 Location: Minneapolis
|
Posted: Fri Apr 02, 2004 12:17 pm Post subject: |
|
|
| reddog wrote: | | it's all good, but why does it take like 5 mins to login in? It's been like that for a while. Like i click it and then about 2 mins later it finally goes. Just thought i would mention that. |
works fine for me, at home (comcast) and at work (T1?)
-tid242 _________________ Sapere aude |
|
| Back to top |
|
 |
subgenious Mordant Peasant


Joined: 27 Feb 2002 Posts: 100 Location: St. Paul
|
Posted: Fri Apr 02, 2004 3:43 pm Post subject: |
|
|
Yeah, you're smoking crack... it works fine for me. _________________ Saving the world, one electron at a time. |
|
| Back to top |
|
 |
smeat! Mordant Ruler


Joined: 27 Feb 2002 Posts: 417 Location: The heights of Columbia
|
Posted: Sat Apr 03, 2004 9:52 am Post subject: |
|
|
| tizmo wrote: | | subgenious wrote: | | Looks freaking good mang. My only beef is that the cursor doesn't automatically go to the username prompt and my lazy ass has to click on it. Funk that. |
Smeat, if you want to make subgenious's wish come true, let me know. I know how to make it happen.
Tizmo |
If you want, just post the code here and I will implement it.
Thanks duder.
smeat! _________________ d00000D!!11 i fukd u! Bend over u h0z3r!!1111 |
|
| Back to top |
|
 |
tid242 Mordant God


Joined: 27 Feb 2002 Posts: 1964 Location: Minneapolis
|
Posted: Sat Apr 03, 2004 12:11 pm Post subject: |
|
|
we need to put the mordant/mordantforum/sycophant/tid242 buttons (as they are on sycophant and mordant) on the top of the mordantforum. We'll probably have to rm the current mordantforum logo in the upper left, and then probably put the phpbb buttons (FAQ/search/memberlist/usergroups/et al) underneath the mordant/mordantforum/sycophant... buttons in a single line...
would be coo' da'
-tid242 _________________ Sapere aude |
|
| Back to top |
|
 |
tizmo Mordant Elite

Joined: 27 Feb 2002 Posts: 558 Location: The Communist Conglomoration of Virginia
|
Posted: Sat Apr 03, 2004 4:50 pm Post subject: |
|
|
| smeat! wrote: | | tizmo wrote: | | subgenious wrote: | | Looks freaking good mang. My only beef is that the cursor doesn't automatically go to the username prompt and my lazy ass has to click on it. Funk that. |
Smeat, if you want to make subgenious's wish come true, let me know. I know how to make it happen.
Tizmo |
If you want, just post the code here and I will implement it.
Thanks duder.
smeat! |
1. In the opening form tag for the form containing the login user/pass boxes add this: name="login".
2. In the opening body tag put this:
onLoad="uname()"
3. Somewhere between the head tags put this:
<script>
function uname(){document.login.login_username.focus();}
</script>
NOTE: It might be possible to combine steps 2 and 3 by doing this:
onLoad="document.login.login_username.focus();"
So here is a recap of what is happening:
- onLoad="" means run said command once the page is fully loaded.
- document.login.login_username.focus() means, in the document this code is in, find the object (form) named "login", in that object (form), find the object (text box) named "login_username", in that object (text box) call the focus() function.
- the focus() function causes the mouse and keyboard focus to be set on that item.
Class dismissed:)
Tizmo |
|
| Back to top |
|
 |
tid242 Mordant God


Joined: 27 Feb 2002 Posts: 1964 Location: Minneapolis
|
Posted: Sat Apr 03, 2004 4:53 pm Post subject: |
|
|
| tizmo wrote: |
So here is a recap of what is happening:
- onLoad="" means run said command once the page is fully loaded.
- document.login.login_username.focus() means, in the document this code is in, find the object (form) named "login", in that object (form), find the object (text box) named "login_username", in that object (text box) call the focus() function.
- the focus() function causes the mouse and keyboard focus to be set on that item.
Class dismissed:)
|
Yes, we will leave the implementation as an exercise for the reader.
-tid242 _________________ Sapere aude |
|
| Back to top |
|
 |
smeat! Mordant Ruler


Joined: 27 Feb 2002 Posts: 417 Location: The heights of Columbia
|
Posted: Sun Apr 04, 2004 7:38 am Post subject: |
|
|
| tizmo wrote: | | smeat! wrote: | | tizmo wrote: | | subgenious wrote: | | Looks freaking good mang. My only beef is that the cursor doesn't automatically go to the username prompt and my lazy ass has to click on it. Funk that. |
Smeat, if you want to make subgenious's wish come true, let me know. I know how to make it happen.
Tizmo |
If you want, just post the code here and I will implement it.
Thanks duder.
smeat! |
1. In the opening form tag for the form containing the login user/pass boxes add this: name="login".
2. In the opening body tag put this:
onLoad="uname()"
3. Somewhere between the head tags put this:
<script>
function uname(){document.login.login_username.focus();}
</script>
NOTE: It might be possible to combine steps 2 and 3 by doing this:
onLoad="document.login.login_username.focus();"
So here is a recap of what is happening:
- onLoad="" means run said command once the page is fully loaded.
- document.login.login_username.focus() means, in the document this code is in, find the object (form) named "login", in that object (form), find the object (text box) named "login_username", in that object (text box) call the focus() function.
- the focus() function causes the mouse and keyboard focus to be set on that item.
Class dismissed:)
Tizmo |
Thanks Tizmo, everything is all configured now. Subgenious can stop whining now.
smeat! _________________ d00000D!!11 i fukd u! Bend over u h0z3r!!1111 |
|
| Back to top |
|
 |
subgenious Mordant Peasant


Joined: 27 Feb 2002 Posts: 100 Location: St. Paul
|
Posted: Sun Apr 04, 2004 12:04 pm Post subject: |
|
|
Life is good. _________________ Saving the world, one electron at a time. |
|
| Back to top |
|
 |
tid242 Mordant God


Joined: 27 Feb 2002 Posts: 1964 Location: Minneapolis
|
Posted: Sat Jul 10, 2004 6:36 am Post subject: |
|
|
| smeat! wrote: |
Thanks Tizmo, everything is all configured now. Subgenious can stop whining now.
|
he'll be whining again soon, i'm afraid.
-tid242 _________________ Sapere aude |
|
| Back to top |
|
 |
subgenious Mordant Peasant


Joined: 27 Feb 2002 Posts: 100 Location: St. Paul
|
Posted: Tue Jul 13, 2004 8:20 am Post subject: |
|
|
Damn straight! I'm guessing that whatever caused the server to be unavailable for an evening a few days ago was really a l33t hax0r who infiltrated the system to destroy my much beloved auto-namefield-cursor-thingie. Rat bastard. _________________ Saving the world, one electron at a time. |
|
| Back to top |
|
 |
smeat! Mordant Ruler


Joined: 27 Feb 2002 Posts: 417 Location: The heights of Columbia
|
Posted: Thu Sep 23, 2004 7:10 pm Post subject: |
|
|
| tid242 wrote: | we need to put the mordant/mordantforum/sycophant/tid242 buttons (as they are on sycophant and mordant) on the top of the mordantforum. We'll probably have to rm the current mordantforum logo in the upper left, and then probably put the phpbb buttons (FAQ/search/memberlist/usergroups/et al) underneath the mordant/mordantforum/sycophant... buttons in a single line...
would be coo' da'
-tid242 |
I finally did this last night. Now you can rest easy at night.
smeat! _________________ d00000D!!11 i fukd u! Bend over u h0z3r!!1111 |
|
| Back to top |
|
 |
smeat! Mordant Ruler


Joined: 27 Feb 2002 Posts: 417 Location: The heights of Columbia
|
Posted: Thu Sep 23, 2004 7:12 pm Post subject: |
|
|
| subgenious wrote: | | Damn straight! I'm guessing that whatever caused the server to be unavailable for an evening a few days ago was really a l33t hax0r who infiltrated the system to destroy my much beloved auto-namefield-cursor-thingie. Rat bastard. |
Hehe never saw this till just now. Actually it was an upgrade of the Typo3 CMS that fixed the bug I had worked around to get the cursor focus stuff working. Now I removed my work around and everything is working correctly again.
smeat! _________________ d00000D!!11 i fukd u! Bend over u h0z3r!!1111 |
|
| Back to top |
|
 |
|