PDA

View Full Version : 2 questions



Belgiumdude
May 19th, 2002, 19:07
First:
Why doesen't this code work?????
<style type="text/css">
<!-
BODY{
scrollbar-3d-light-color: #ff8000;
scrollbar-arrow-color: #000080;
scrollbar-base-color: #000080;
scrollbar-dark-shadow-color: #24369C;
scrollbar-face-color: #99B3CC;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #24369C;
}
-->

I just want my scroll bar colered...

Second question:
I'm searching for somekind of rating system....
My site will be about unknown DJs,and people should have the possebility to rate them....I don't know anything about php and that stuff,so I'm searching for an alternatif....

If you can answer 1 of these questions plz do so...

Thanks,

Nick
May 19th, 2002, 19:48
<edit> nevermind, that doesn't work. hmm.... :confused: </edit>

el crapo
May 19th, 2002, 20:35
Originally posted by Belgiumdude

<style type="text/css">

BODY{
scrollbar-3d-light-color: #ff8000;
scrollbar-arrow-color: #000080;
scrollbar-base-color: #000080;
scrollbar-dark-shadow-color: #24369C;
scrollbar-face-color: #99B3CC;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #24369C;
}
</style>


well that code works for me

randi
May 19th, 2002, 21:18
It should work fine, so long as you put the code in the header section (between <head> and </head>). :smile2:

meow
May 20th, 2002, 08:04
Do you happen to use a Doctype? In that case that could be the reason.

Belgiumdude
May 20th, 2002, 11:54
Thanks People,it works

I got another really stupid question:for some reasen I can't get a simpel picture next text in frontpage....when I try to do that the cursor just jumps onder the picture....(and I know it;frontpage sucks).....

meow
May 20th, 2002, 12:12
:D :p
Open it and edit the code. FP has probably wrapped each item in double tables or something.

Curious - what was wrong with the scrollbar thing? :confused:

Belgiumdude
May 20th, 2002, 12:24
grrrr this is frustrating,why doesen't that text go next too that picture grrrr...now serious how do I solve this...?????

meow
May 20th, 2002, 12:41
Man, without seeing what you've got it's hard to say. :cry2:

Belgiumdude
May 20th, 2002, 13:13
It looks like this:

This is a test<img src="file:///C:/mixfiles/mengpaneel.gif" width="150" height="106"
alt="mengpaneel.gif (6338 bytes)">

Christopher
May 20th, 2002, 21:00
Don't pictures automatically wrap though?

Try putting them in tables:


<table cellspacing="0" cellpadding="0">
<tr>
<td>This is a test</td>
<td><img src="file:///C:/mixfiles/mengpaneel.gif" width="150" height="106"
alt="mengpaneel.gif (6338 bytes)"></td>
</tr>
</table>

Belgiumdude
May 21st, 2002, 15:01
Originally posted by Christopher
Don't pictures automatically wrap though?

Try putting them in tables:


<table cellspacing="0" cellpadding="0">
<tr>
<td>This is a test</td>
<td><img src="file:///C:/mixfiles/mengpaneel.gif" width="150" height="106"
alt="mengpaneel.gif (6338 bytes)"></td>
</tr>
</table>


Thanks dude,works great!!!!