Thread: Slider in sertain frames
Results 1 to 4 of 4
Related
-
Great and simple photo slider Forum: Javascript Forum
Replies: 0 -
A new simple way to make a image slider- Javascript Code Forum: Javascript Forum
Replies: 0 -
Vertical Scrollbar / Slider Manipulation Forum: Javascript Forum
Replies: 0 -
Veritcal Scrollbar Slider Increments Forum: CSS Forum
Replies: 1 -
Frames Forum: HTML Forum
Replies: 2
-
11-05-2003, 04:55 AM #1
Slider in sertain frames
I am building a site in frames.
A top frame for the banner
A left frame for the navigation
A middle frame for the contence
A right frame for banners and ads.
Now i keep getting a slider between the middle frame (contence) and the right frame (banners), how can i make the top frame static and the three frames underneath the top frame to slide together with one slider?
And how can i adjust the apearance of the slider to matching colours of the site?
plz help me, Thx
Greetz Majin Bojin
-
11-05-2003, 01:16 PM #2Code:
<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <frameset rows="188,*" frameborder="NO" border="0" framespacing="0" cols="*"> <frame name="topFrame" scrolling="NO" noresize src="index.asp" > <frameset cols="134,*" frameborder="NO" border="0" framespacing="0" rows="*"> <frame name="leftFrame" scrolling="NO" noresize src="leftbar.htm"> <frameset cols="*,133" frameborder="NO" border="0" framespacing="0" rows="*"> <frame name="mainFrame" src="about.htm"> <frame name="rightFrame" scrolling="NO" noresize src="rightbar.htm"> </frameset> </frameset> </frameset> <noframes> <body bgcolor="#FFFFFF" text="#000000"> </body> </noframes> </html>
As u can see the middle frame <frame name="mainFrame" src="about.htm"> has a slider in it, how can i make the leftFrame-mainFrame-RightFrame Slide together? with one slider on the right side of the page?
And how can i change the apearance of this slider?
Thx, and Greetz Majin BojinLast edited by Dutchclan; 11-05-2003 at 01:18 PM.
-
11-06-2003, 10:36 PM #3
I do not know of any way to make one window scroll with another.
To customize the style of the scroll bar you would add this code to your stylesheet
Code:BODY { SCROLLBAR-FACE-COLOR:#FFFFFF; SCROLLBAR-HIGHLIGHT-COLOR: #FFFFFF; SCROLLBAR-SHADOW-COLOR: #FFFFFF; SCROLLBAR-3DLIGHT-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR: #FFFFFF; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #FFFFFF; }
-
11-07-2003, 12:38 PM #4
Thx
Thank u for your reply! i allready got the code for the colours of the scroll bars, but maybe someone else could use this info :P
About the frames and making them slide together, this is prob. done by synchronized scrolling, through scripting. But its verry tricky to make it work right in diffr. browsers...:/ we decided to not use three diffrent frames for the navigation (left) contence (middle) and banners (right). in stead we are trying to make editable layout tables, my friend is going to try and use our Sql database to place the requested contence in the layout tables trough PhP4 scripting... so our clan members can edit the contence without needing any Html or Php4 knowlige..
Anyways, thanks for your help!
Cloudjiffy- PaaS for Developers
10-05-2020, 12:30 AM in Web Hosting Forum