Powered by Invision Power Board


Pages: (2) [1] 2   ( Go to first unread post ) Reply to this topicStart new topic

> scroll bar colours, jus wondering if u guys want..
Constance
Posted: April 02, 2004 03:25 am
Quote Post


Aware
****

Group: the man
Posts: 803
Member No.: 3
Joined: March 13, 2004



them to be a diff colour.. like the backround black and the bar *edit* red or sumthin..

suggestions are welcomed..


--------------------
\m/ (>.<) \m/ Peace, Rock On, and Fuck You! \m/ (>.<) \m/
.....................\m/ Support Your Local Bands \m/...................
PMUsers WebsiteAOLYahooMSN
Top
Chris
Posted: April 02, 2004 03:30 am
Quote Post


Observer
***

Group: Members
Posts: 309
Member No.: 5
Joined: March 16, 2004



or you could just make it red


--------------------
PMEmail PosterUsers WebsiteYahooMSN
Top
Constance
Posted: April 02, 2004 04:18 am
Quote Post


Aware
****

Group: the man
Posts: 803
Member No.: 3
Joined: March 13, 2004



yeah.. my bad.. thats wat i mean.ti was thinking red but typed blue cause i was looking at it.. lol.. oops


--------------------
\m/ (>.<) \m/ Peace, Rock On, and Fuck You! \m/ (>.<) \m/
.....................\m/ Support Your Local Bands \m/...................
PMUsers WebsiteAOLYahooMSN
Top
Tyler
Posted: April 02, 2004 07:21 pm
Quote Post


Aware
****

Group: the man
Posts: 964
Member No.: 6
Joined: March 16, 2004



I think red's a good idea.


--------------------
PMEmail PosterUsers WebsiteAOLYahoo
Top
asher
Posted: April 02, 2004 09:03 pm
Quote Post


Observer
***

Group: the man
Posts: 148
Member No.: 4
Joined: March 13, 2004



if you could match it to the devices site that would be great, the code is:

<STYLE type=text/css>
BODY {scrollbar-3dlight-color:#000000;
scrollbar-arrow-color:#000000;
scrollbar-base-color:#000000;
scrollbar-track-color:#000000;
scrollbar-darkshadow-color:#000000;
scrollbar-face-color:#8B0000;
scrollbar-highlight-color:#A9A9A9;
scrollbar-shadow-color:#7F7F7F}
</STYLE>

or i suppose i could do it myself, being of "the man" and all.

but I'd hate to step on your feet Constance, cause we love you. devices/sunny.gif

PMEmail Poster
Top
fukingus
Posted: April 02, 2004 10:19 pm
Quote Post


Conscious
**

Group: Police
Posts: 93
Member No.: 11
Joined: March 23, 2004



go darth..... devices/icon_rolleyes.gif j/k!! the forum rocks whatever color it is...
PMEmail Poster
Top
Chris
Posted: April 02, 2004 10:23 pm
Quote Post


Observer
***

Group: Members
Posts: 309
Member No.: 5
Joined: March 16, 2004



just an idea ...what about the Cross Hairs you guys have on your site? i have that on my board. devices/icon_cool.gif


--------------------
PMEmail PosterUsers WebsiteYahooMSN
Top
Tyler
Posted: April 02, 2004 10:37 pm
Quote Post


Aware
****

Group: the man
Posts: 964
Member No.: 6
Joined: March 16, 2004



That'd be sik


--------------------
PMEmail PosterUsers WebsiteAOLYahoo
Top
Constance
Posted: April 03, 2004 12:47 am
Quote Post


Aware
****

Group: the man
Posts: 803
Member No.: 3
Joined: March 13, 2004



scroll bars done! devices/icon_wink.gif

anything else?


--------------------
\m/ (>.<) \m/ Peace, Rock On, and Fuck You! \m/ (>.<) \m/
.....................\m/ Support Your Local Bands \m/...................
PMUsers WebsiteAOLYahooMSN
Top
Chris
  Posted: April 03, 2004 02:35 am
Quote Post


Observer
***

Group: Members
Posts: 309
Member No.: 5
Joined: March 16, 2004



if they want the Cross Hairs code, i could give it to you. i have it saved and set for red (because of my site) devices/icon_razz.gif but its up to ya all.


--------------------
PMEmail PosterUsers WebsiteYahooMSN
Top
asher
Posted: April 03, 2004 12:03 pm
Quote Post


Observer
***

Group: the man
Posts: 148
Member No.: 4
Joined: March 13, 2004



sweet, post the dhtml code leather, or i can too.

do it do it do it

this shits starting to be fun, lets get it better
PMEmail Poster
Top
Chris
Posted: April 04, 2004 01:39 am
Quote Post


Observer
***

Group: Members
Posts: 309
Member No.: 5
Joined: March 16, 2004



Since there's two parts....here they are...i dont know how to do DHTML or whatever for Forumer. Don't know if it's seperate like Proboards but, the two parts (HEAD, BODY). ..fuck im confusing my self. Proboards, gives me two options (Header, Footer). Header, i put both parts together into that section. Making any sense?

Alright, here's the first part: HEAD;

---------------

<style>
<!--
#leftright, #topdown{
position:absolute;
left:0;
top:0;
width:1px;
height:1px;
layer-background-color:red;
background-color:red;
z-index:100;
font-size:1px;
}
-->
</style>

----------------- 2nd part: BODY.------------

<div id="leftright" style="width:expression(document.body.clientWidth-2)"></div>
<div id="topdown" style="height:expression(document.body.clientHeight-2)"></div>

<script language="JavaScript1.2">
<!--

/*
Document crosshair Script-
By Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more free DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/

if (document.all&&!window.print){
leftright.style.width=document.body.clientWidth-2
topdown.style.height=document.body.clientHeight-2
}
else if (document.layers){
document.leftright.clip.width=window.innerWidth
document.leftright.clip.height=1
document.topdown.clip.width=1
document.topdown.clip.height=window.innerHeight
}


function followmouse1(){
//move cross engine for IE 4+
leftright.style.pixelTop=document.body.scrollTop+event.clientY+1
topdown.style.pixelTop=document.body.scrollTop
if (event.clientX<document.body.clientWidth-2)
topdown.style.pixelLeft=document.body.scrollLeft+event.clientX+1
else
topdown.style.pixelLeft=document.body.clientWidth-2
}

function followmouse2(e){
//move cross engine for NS 4+
document.leftright.top=e.y+1
document.topdown.top=pageYOffset
document.topdown.left=e.x+1
}

if (document.all)
document.onmousemove=followmouse1
else if (document.layers){
window.captureEvents(Event.MOUSEMOVE)
window.onmousemove=followmouse2
}

function regenerate(){
window.location.reload()
}
function regenerate2(){
setTimeout("window.onresize=regenerate",400)
}
if ((document.all&&!window.print)||document.layers)
//if the user is using IE 4 or NS 4, both NOT IE 5+
window.onload=regenerate2

//-->
</script>

----------------------------

Good Luck for whoever does this.


--------------------
PMEmail PosterUsers WebsiteYahooMSN
Top
Constance
Posted: April 04, 2004 02:45 am
Quote Post


Aware
****

Group: the man
Posts: 803
Member No.: 3
Joined: March 13, 2004



holy shit

i dont think i can do that
asher might or tyler.. one of em


--------------------
\m/ (>.<) \m/ Peace, Rock On, and Fuck You! \m/ (>.<) \m/
.....................\m/ Support Your Local Bands \m/...................
PMUsers WebsiteAOLYahooMSN
Top
asher
Posted: April 04, 2004 04:48 am
Quote Post


Observer
***

Group: the man
Posts: 148
Member No.: 4
Joined: March 13, 2004



ok, here's the deal with the crosshairs.

this thing is laid out into dhtml components or php or something, so I cannot get access to a "HEAD" or "BODY" section that includes everything we see.
For example, i could put the crosshairs in the upper place where the logo is, but it wouldnt work elsewhere.

So the solution that I am thinking currently, is to embed the board into a frame attached to the template governing the Devices site. This way the Frameset rules will apply, and we should get the crosshairs.

Or perhaps a giant clusterfuck.

we'll see.
PMEmail Poster
Top
Constance
Posted: April 04, 2004 04:59 am
Quote Post


Aware
****

Group: the man
Posts: 803
Member No.: 3
Joined: March 13, 2004



*saves the css just incase sumthing goes horribly wrong* not saying it will. but just incase... devices/sunny.gif



i asked forumer support if they had any ideas on the subj just incase u were unable to do it.. devices/icon_wink.gif


--------------------
\m/ (>.<) \m/ Peace, Rock On, and Fuck You! \m/ (>.<) \m/
.....................\m/ Support Your Local Bands \m/...................
PMUsers WebsiteAOLYahooMSN
Top
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

Topic Options Pages: (2) [1] 2  Reply to this topicStart new topic