:: claradance.com ::

Everything that is eurobeat can be discussed here.
Pol NRG
Eurobeat Boom
Posts: 195
Joined: 29 Aug 2004, 22:45
Location: Barcelona [Catalonia]

Post by Pol NRG » 12 Apr 2006, 21:01

Hi Oresama,

My japanese friend Yuca can't see the website also... As you said, probably the problem is on this JavaScript code, the website is optimized for three screen resolutions:

800x600 - 1024x768 and 1280x1024
(they are the most common screens resolutions)

This night I have changed the JavaScript code with a better one...

..it detect and redirect to the appropiated screen resolution of every visitor; if the screen resolution is less than 1280 there's no problem but if it's bigger than 1280, such as... 1600x1200 the website redirect the visitor to this page:

http://www.claradance.com/error.html
:roll:

Anyway if you find a better script please let me know :wink:

Note that it's not tested and probably don't work fine in Firefox, Netscape or Macintosh... In my taste Internet Explorer is the best so long time ago I decided to make websites only and specially for this browser.

Best regards and many thanks for your support!
Pol :wink:
Last edited by Pol NRG on 12 Apr 2006, 22:53, edited 6 times in total.
"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; truth is not beauty; beauty is not love; love is not music; music is the best."

User avatar
Victor
Euro To B
Posts: 33
Joined: 23 Nov 2004, 21:16
Location: London, England

Post by Victor » 12 Apr 2006, 21:48

I think Oresama and Shawaazu are ganging up on me.

Is there some authority to settle this???

How about Move up and down by Linda Ross?

That sounds like Clara to me.

Also,, A Eurobeat classic Sophie- Tell me why is apparently written
by Clara.

That should get a mention on Pol's site.

Sadie
Mega NRG Girl
Posts: 595
Joined: 29 May 2005, 17:12
Location: U.S.A.
Contact:

Post by Sadie » 12 Apr 2006, 22:56

I was curious; Pol, do you plan on getting all of Clara Moroni's lyrics and posting them at your site? That's quite a large number of lyrics if so.
Energy :: Mega NRG Man Fansite

Pol NRG
Eurobeat Boom
Posts: 195
Joined: 29 Aug 2004, 22:45
Location: Barcelona [Catalonia]

Post by Pol NRG » 12 Apr 2006, 23:15

Hi Sadie,

I would like to put all lyrics of Clara but todate it's a hard work to me because unfortunately I'm very busy with my job, I'm working the weekends too, I have only one day of free time every week :( . By the way, the website is made in three screen resolutions, that's means that I must to do everything x3 :D

If in the future I found a good script made in PHP or PERL in order to update lyrics easy, I will do... :wink:

All the best!
Pol
"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; truth is not beauty; beauty is not love; love is not music; music is the best."

oresama-chan
Eurohero
Posts: 836
Joined: 11 Aug 2005, 05:39
Location: varese, Italy
Contact:

Post by oresama-chan » 13 Apr 2006, 02:21

Hola Pol,
Ok, I got it. So I'll tell them to adjust their screen resolution.

Hi Victor,
I think Oresama and Shawaazu are ganging up on me.
No, no...don't get me wrong. :) I agree with you on all the rest of the songs you listed.

Trisha - Everytime You Want (one of my all-time favorite songs by Clara)
Jilly - Call My Name (her falsetto is so cute)
Maltese - I Hate Mondays (Gianni's lead vocals + Clara's back-up vocals)
Linda Ross - Up And Down (the third song under the name of Linda Ross)
Trisha - Silver Kisses (Trisha's second. The bridge has only 4 battutas like Leslie Parrish - Victim)

As to Emanuela Gubinelli, just browse this French site.
http://www.eurokdj.com/
Click on the Encyclopaedia search engine, put "taleesa" in the form of
"Artist or label name", push the search button and you'll find her pretty reliable discography. Taleesa is worldwide the most renowned aliase of Emanuela Gubinelli.
ImageImageImage

Pol NRG
Eurobeat Boom
Posts: 195
Joined: 29 Aug 2004, 22:45
Location: Barcelona [Catalonia]

Post by Pol NRG » 13 Apr 2006, 07:30

Hi Oresama,

This is the new JavaScript code:

http://www.hotscripts.com/Detailed/10831.html
:roll:

Take a look to "VISIT" for the code.

I think it's better than the old one :) As you saw, every section have a picture in the background, it looks very nice but I needs to make the website in every screen resolution in order that the layout looks OK. By the way, my computer can't up to 1600 so I can't make this version of the website :wink:

Hi Victor,

I will update soon the discography with the songs that you, Oresama and Shawaazu agree :wink:

Have a nice day...

I go to have a coffee,
Pol :wink:
"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; truth is not beauty; beauty is not love; love is not music; music is the best."

Humbedooh
Forum Cow
Posts: 205
Joined: 29 Sep 2005, 17:24
Location: Copenhagen, Denmark

Post by Humbedooh » 13 Apr 2006, 15:00

The big secret is making a page that resizes itself to fit your resolution (take this forum for instance), although it requires some skill to make it look neat.

Designing a page for Internet Explorer is a bit of a gamble, and I wouldn't advise you to do so, nor should you design it for any other browser - the page should be rendered the same in all browsers. Again, this takes time to learn, but it's becoming increasingly important to do. In the old days, after the browser war had ended, 97% or such used Internet Explorer and their faulty way of making html, and making sites for IE was the obvious choice. Today, 42% of all Eurobeat Prime visitors use Mozilla Firefox meaning they'll have a bad experience visiting your site if it's made for Internet Explorer (I use Firefox myself, and couldn't play any of the songs in the music box :().

Also, you should probably edit the javascript on your first page to something like this:

Code: Select all

<!--

if &#40;screen.width <= 800&#41; &#123;
document.location = "800x600/intro/index2.html";
&#125;

else if &#40;screen.width <= 1024&#41; &#123;
document.location = "1024x768/intro/index2.html";
&#125;

else if &#40;screen.width >= 1280&#41; &#123;
document.location = "1280x1024/intro/index2.html";
&#125;

//-->
so it'll redirect to the 1280x1024/intro/index2.html if you use 1280x1024 or greater instead of giving an error if you use 1600x1200 f.x.

Furthrmore, you should change the background so it becomes a fixed image and not tiled like it is now - I can see 4 Claras in my 1800x1440 resolution, heh.

Here's how to make it friendly for me and others using high resolutions:

In your box.html you have this code:

Code: Select all

</HEAD>
<BODY BGCOLOR="Black" TEXT="White" link="Gray" vlink="Gray" alink="Gray" bgproperties="FIXED" leftmargin=0 marginwidth="0" topmargin=0 marginheight="0" background="mb-1280.jpg" ondragstart="return false" onselectstart="return false" oncontextmenu="return false">
You need to change this to:

Code: Select all

<style type="text/css">
<!--
body &#123;
	color&#58; #FFFFFF;
	background-color&#58; #000000;
	background-image&#58; url&#40;mb-1280.jpg&#41;;
	margin-left&#58; 0px;
	margin-top&#58; 0px;
	margin-right&#58; 0px;
	margin-bottom&#58; 0px;
	background-repeat&#58;no-repeat;
&#125;
a&#58;link &#123;
	color&#58; #999999;
&#125;
a&#58;visited &#123;
	color&#58; #999999;
&#125;
a&#58;hover &#123;
	color&#58; #999999;
&#125;
a&#58;active &#123;
	color&#58; #999999;
&#125;
-->
</style></head>

<body>
- De apibus semper dubitandum est
(You never know about bees)

User avatar
Victor
Euro To B
Posts: 33
Joined: 23 Nov 2004, 21:16
Location: London, England

Post by Victor » 13 Apr 2006, 18:52

Thanks Oresama,

I knew nothing of Taleesa.

She has quite an extensive site.

I hope they get the music samples up and running so I can listen to them.

Thanks Pol,

I'm surprised that I was able to advise a Clara expert as your self.

By the way.

I like a song called Where do we go by Sophie. I'm sure Clara is singing the backing
and is solo at one point in the song. Another fave is Maybe Tomorrow by Gipsy and Queen which has Clara credited.

Pol NRG
Eurobeat Boom
Posts: 195
Joined: 29 Aug 2004, 22:45
Location: Barcelona [Catalonia]

Post by Pol NRG » 14 Apr 2006, 12:19

Hi Humbedooh!

Do you are a webmaster ?
Thanks a million for your help, I already modified the layout of the MUSIC BOX with your CSS STYLE SHEETS suggestions :wink: ..the background still the same ultil I find a better one. By the way, my Flash knowledge is very poor but my desire is to update the MUSIC BOX with Macromedia technology compatible to all browsers, Firefox included :wink: ..we will see..... Concerning the screen resolution, it's the neverending problem :cry: I'm looking for a script that force the Operation System to change the screen resolution when the website is loading... but at the moment I have not find it :( This is the new code, a little bit different that you gave me, it takes more screen sizes of... 1280.

Code: Select all

<!-- 

if &#40;screen.width <= 800&#41; &#123;
document.location = "800x600/intro/index2.html";
&#125;

else if &#40;screen.width <= 1024&#41; &#123;
document.location = "1024x768/intro/index2.html";
&#125;

else if &#40;screen.width <= 1280&#41; &#123;
document.location = "1280x1024/intro/index2.html";
&#125;

if &#40;screen.width > 1280&#41; &#123;
document.location = "1280x1024/intro/index2.html";
&#125;

//-->
................................................. :roll:
Victor wrote:Thanks Pol,

I'm surprised that I was able to advise a Clara expert as your self.

By the way.

I like a song called Where do we go by Sophie. I'm sure Clara is singing the backing
and is solo at one point in the song. Another fave is Maybe Tomorrow by Gipsy and Queen which has Clara credited.
Thanks to you! ..the discography is already updated!!! ..up to 583 songs :D

All the best!
Pol :wink:
"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; truth is not beauty; beauty is not love; love is not music; music is the best."

Sadie
Mega NRG Girl
Posts: 595
Joined: 29 May 2005, 17:12
Location: U.S.A.
Contact:

Post by Sadie » 14 Apr 2006, 22:40

Pol NRG wrote:Thanks to you! ..the discography is already updated!!! ..up to 583 songs :D
HA! Watch it hit 650 before two weeks pass!
Clara Moroni has done so much.... you just know the list will grow-and-grow!

I was just listening to Maharaja Night HI-NRG Revolution 13, and here are two you don't have listed yet;
Tension - Tell Me Why (Background; intro)
Terry Gordon - Move Your Feet (Main vocalist)
Energy :: Mega NRG Man Fansite

Shawaazu
Master of Time
Posts: 1125
Joined: 15 Jul 2004, 09:43
Location: Sydney, Australia
Contact:

Post by Shawaazu » 15 Apr 2006, 13:35

Looks like you haven't put up her Hyper Techno songs. These are the ones that I know she has sung in.

A Beat C

MMM Feat. Lady Lust - Hi-Voltage (chorus)

Delta

Tokyo Girls - Like A Fire (main vocal)
Rain Drop Shower - Hyper Techno venus (main vocal)
Dirty Roses - Hyper Techno waros (chorus)
The Prophet - Crazy Train (chorus)
The Prophet - Black Leather (chorus)
Techno Mob - Made In New York (chorus)
Techno Mob - Face Off (chorus)
Techno Mob - Never Never Know (chorus)
Mission One - Hyper Techno Mission (chorus)
Mission One - Higher Forces (chorus)
Concept One - Set Me Free (chorus)

There are probably others, but these are the ones I'm 100% sure of.

Oh and it seems you missed a Sally Rendell song, On Fire.

Pol NRG
Eurobeat Boom
Posts: 195
Joined: 29 Aug 2004, 22:45
Location: Barcelona [Catalonia]

Post by Pol NRG » 15 Apr 2006, 14:10

Sadie wrote: HA! Watch it hit 650 before two weeks pass!
Clara Moroni has done so much.... you just know the list will grow-and-grow!

I was just listening to Maharaja Night HI-NRG Revolution 13, and here are two you don't have listed yet;
Tension - Tell Me Why (Background; intro)
Terry Gordon - Move Your Feet (Main vocalist)
Thank you Sadie! gorw and gorw to 598!!! :wink:
Shawaazu wrote:Looks like you haven't put up her Hyper Techno songs. These are the ones that I know she has sung in.

A Beat C

MMM Feat. Lady Lust - Hi-Voltage (chorus)

Delta

Tokyo Girls - Like A Fire (main vocal)
Rain Drop Shower - Hyper Techno venus (main vocal)
Dirty Roses - Hyper Techno waros (chorus)
The Prophet - Crazy Train (chorus)
The Prophet - Black Leather (chorus)
Techno Mob - Made In New York (chorus)
Techno Mob - Face Off (chorus)
Techno Mob - Never Never Know (chorus)
Mission One - Hyper Techno Mission (chorus)
Mission One - Higher Forces (chorus)
Concept One - Set Me Free (chorus)

There are probably others, but these are the ones I'm 100% sure of.

Oh and it seems you missed a Sally Rendell song, On Fire.
WOW!!! :shock: Shawaazu, my thanks to you also! I totally unknown these songs :o

List updated!!! :D
"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; truth is not beauty; beauty is not love; love is not music; music is the best."

Pol NRG
Eurobeat Boom
Posts: 195
Joined: 29 Aug 2004, 22:45
Location: Barcelona [Catalonia]

Post by Pol NRG » 19 Apr 2006, 19:59

Hello everybody,

There's an important updated in claradance.com, finally I'm honored to show us the wonderful drawing of Regina Farnsworth (18 years old) USA :wink:

See the background of the download section, it's also enclosed in the gallery :D

ciao!
Pol :wink:
"Remember, information is not knowledge; knowledge is not wisdom; wisdom is not truth; truth is not beauty; beauty is not love; love is not music; music is the best."

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 37 guests