Scrolling Bars and transparencies

liunx

Guest
Im making a website, and i wanted to make a table (???) that has a transparent background but also has a coloured scroll bar, im using "Frontpage 2000" and can make my whole website have a custom scrollbar, just not my particular box.... <br />
<br />
In general... i need a box where i can type news etc and people on the internet cant delete it.. because that happened to me.. people can highlight it and edit the text :( the table needs to be borderless... i dont want any silly indentations around the outside and i need the background to be transparent.. prefferabley feint grey. ive looked around the internet and read tutorials but none do the whole package what i need :( <br />
<br />
Please help<br />
<br />
text table<br />
custom colour scrollbar<br />
transparent background<br />
uneditable by visitors<br />
borderless (cushion thingies on the outsides)<br />
<br />
Thanks for your time, ill be grateful for an indepth reply or if someone could make me the code for it, i would be extremely grateful<br />
<br />
Regards<br />
<br />
-Lee-<!--content-->one more thing please guys<br />
a member on this forum posted a topic and i looked at it, the sites ok but i love his cursor, can anyone help me out?<br />
<br />
<!-- m --><a class="postlink" href="http://trax.to/TheDBZZone">http://trax.to/TheDBZZone</a><!-- m --><br />
<br />
-regards-<br />
<br />
<br />
<br />
<br />
}:-)<!--content-->yeh thanks for the input guys. i wont be coming back here :shady:<!--content-->See ya.<br />
<br />
The cyber door is that-a-way.<br />
<br />
<br />
Seriously, you obviously have no concept of time zones or the fact that the internet is usable everywhere. Many people were asleep between the time you were posting, and the later time going into rant mode. As for people in the US, they were all at work during that time frame.<br />
<br />
You need to allow 3 or 4 days for replies to build up; not everyone logs in every day you know...<!--content-->Typical Brummie (some1 from Birmingham)... If were a little more patient you would have got plenty of advice.<!--content-->Well after checking that people WHERE actually on the forum, i decided to post, waiting for a reply. then when no one replied when i saw some1 who was obviously skilled in HTML, i decided to post the little "Thankyou".<br />
<br />
im not here to flame but when u associate me with a "Typical" brummie i not onlyy find that offensive but extremely judgemental and idiotic comment from your behalf.<br />
If u dont like brummies or think mass numbers are like my "Impatience" then come here and please state your feelings to a "Typical" brummie mob. im sure u would have a pleasant suprise :rolleyes:<!--content-->Im just going to ignore the above argument and tell you the code for the cursor.<br />
<br />
Put this in the head<br />
<br />
<style><br />
<!--<br />
BODY{<br />
cursor:url("mycursor.cur");<br />
}<br />
--><br />
</style><br />
<br />
Now, just substitue the mycsursor.cur to a cursor you want.<br />
<br />
You can find some cursors on your computer's harddrive or try seraching the internet for some.<!--content-->woops,<br />
<br />
gave you the wrong code.<br />
<br />
I was thinking someting else<br />
<br />
Heres a page where you can learn how to do that<br />
<br />
<!-- m --><a class="postlink" href="http://www.dynamicdrive.com/dynamicindex13/crosshair.htm">http://www.dynamicdrive.com/dynamicinde ... sshair.htm</a><!-- m --><br />
<br />
-Joe C<!--content-->ok, maybe it is me, but 6 hours of posting time does not seem to be a whole lot mindbearing time differences, etc...<br />
<br />
this being said, I think you can easily change the code to what you are looking for. Try view-source of the code that front page is providing you. You will see a style sheet for the BODY element which contain the custom colors for the scroll bar. Now copy/paste these data to a fresh (empty) area in the style sheet and apply same to the unique ID of the element to which you are applying the scrollbar. Then simply update the colors to your liking. <br />
<br />
example<br />
<br />
BODY {<br />
scrollbar3dLightColor: blue; <br />
scrollbarArrowColor: green; <br />
}<br />
<br />
<br />
becomes<br />
<br />
#myelement {<br />
scrollbar3dLightColor: blue; <br />
scrollbarArrowColor: green; <br />
}<!--content-->true 6 hours is not a long time.<br />
<br />
but the last time I checked tables can't scroll.<!--content-->Yea, I was thinking that this whole time, but I didnt know if you could do it somehow in some other language or something<!--content-->nope you can't, the only thing that can scroll is a div tag if it is set to. tables by themselves cannot.<!--content-->ok<!--content-->
 
Back
Top