1

Topic: New design

New glamoury design "Cosmetics" on my site smile

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

2

Re: New design

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

3

Re: New design

looks nice! good work radioact!

Mattias

4

Re: New design

bryan_adam wrote:

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.

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

5

Re: New design

IE7 I think. Fixed. Thank you for spotting that, Bryan

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

6

Re: New design

Great job as always.

Looks good here

/ FF2, IE7, Safari 3

Developer

7

Re: New design

No Problem Radioact, yes its IE7, sites looks great!!

Bryan

8

Re: New design

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 (!!!)

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

9

Re: New design

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 smile

10

Re: New design

: ) 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.

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

11

Re: New design

the site is looking good my friend!!!

12

Re: New design

Thank you, Yaniv. Long time no see.

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

13

Re: New design

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)

kalluu

14

Re: New design

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.

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

15

Re: New design

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.

kalluu

16

Re: New design

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>

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

17

Re: New design

Cheers! radioact!
That works, now i'm going to add this on several text fields.

Thanks!

kalluu

18

Re: New design

You are welcome! Fine smile

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

19

Re: New design

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. big_smile

Last edited by inatmo (2007-11-19 13:08:33)