Topic: New design
New glamoury design "Cosmetics" on my site ![]()
www.vldCrowd.com/radioact - my profile at vldCrowd
You are not logged in.
New glamoury design "Cosmetics" on my site ![]()
looks great!! but your bottom menu bar is floating in the middle of the page. just an FYI, other then that it put together really well
Bryan
looks great!! but your bottom menu bar is floating in the middle of the page. just an FYI, other then that it put together really well
Bryan
Thank you. Can you tell me your browser and version.
Thank you guys.
IE7 I think. Fixed. Thank you for spotting that, Bryan
Great job as always.
Looks good here
/ FF2, IE7, Safari 3
You can enter as u: demo, p: demo
And see some really nice feature:
Puzzle for members not uploaded own photo and trying to watch another people's photo (!!!)
a lot of great features, especially the e-card and blog post. I see what you are doing with the puzzle. (I could work on some of them for hours ![]()
: ) I suppose that photo uploaded people would regret that they can't play puzzle anymore.
And yesterday I added characters countdown on message fields, notifications on picture comments, blog comments, guestbook comments.
I'm not showing off just want other vldP users know that it's possible if you have couple of days and some knowledge and wish.
the site is looking good my friend!!!
Thank you, Yaniv. Long time no see.
Hi radioact
That characters countdown seems to be very useful to have. I founded some javascript for to do that. RemLen and so.
But how did you managed yours? The first part of this script should be in the header, but is it also possible to have a js file in includes/js? and than point to that js file in the header?
I can get this to work in one text field (messages) but for some reason it shows "100" characters from the beginning (should be 2000) and when starting to write it dont count the first letter. After the second letter it shows everything as it should be. Than it shows how many letters is left correct. Can you please give a little advice?
Last edited by kalluu (2007-11-18 04:28:39)
Hello, Kalluu
I added this code at the end of the misc.js (in includes/js) but you can use separate file for this:
// Text Counter
function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else
countfield.value = maxlimit - field.value.length - 1;
}And you can call it from textarea tag like this:
onKeyDown="textCounter(this.form.body,this.form.remLen,1500);" onKeyUp="textCounter(this.form.body,this.form.remLen,1500);"where 1500 is the number of maxchars.
My code starts counting from the second char too, that is why I use 'minus 1' letter at the last line of code.
In my case it dont work. It also try to start the counting from 200 not 2000 as i want to and than suddenly stop the counting.
Well, i hope this could be standard in vld soon on every text fields.
Hahaha!!! I faced that problem earlier!!! So forget about my script! Use yours BUT set size of your form input field size to 3 digits. Here exactly how my field looks.
<input readonly type=text name=remLen size=3 maxlength=3 value=""></dt>
Cheers! radioact!
That works, now i'm going to add this on several text fields.
Thanks!
You are welcome! Fine ![]()
Hi
Nice view and Really great features.
I just have no time now to visit this forum, working on other sites...
Puzzles are really cool idea.
I want this too. ![]()
Last edited by inatmo (2007-11-19 13:08:33)