rejetto forum

Software => HTML & templates => HFS ~ HTTP File Server => RAWR-Designs => Topic started by: BoneMan on June 22, 2008, 02:56:24 PM

Title: Question about RAWR template....By the way I love this template.
Post by: BoneMan on June 22, 2008, 02:56:24 PM
Is there a way to have the area I circled ONLY change as you go from page to page. I would like the stuff on the right not to refresh. Keep in mind I'm a newbie when it comes to HTML but willing to learn.

I want to thank you for the template I love it. Can wait to have the player all worked out.

Thanks in advance.

(http://i27.tinypic.com/14329kx.jpg)
Title: Re: Question about RAWR template....By the way I love this template.
Post by: Foggy on June 22, 2008, 10:04:29 PM
it would be possible yes, just the only problem is it will require quite a bit of work to recode some of the template.

I have to go to school soon but if I get a chance later ill have a look at it.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on June 22, 2008, 10:20:25 PM
Thanks for your quick response. I will wait for any help you send my way.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on June 29, 2008, 04:42:51 PM
I think he forgot... I guess this will require frames. You will need an index.htm or something that has a frameset. One frame will have the video player, the other the HFS. I don't think you can replicate the style with the header without a fair bit of work... it might be possible without the breadcrumbs (just header div) but those are quite key to the navigation...
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on June 29, 2008, 07:04:53 PM
Thanks for the reply.


it might be possible without the breadcrumbs (just header div) but those are quite key to the navigation...

Actually that's what I thought. I already started working on something I'm sure I will screw it up but hey that's the way to learn.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: rejetto on June 29, 2008, 09:37:32 PM
the frameset solution should fit.
for "dynamic" solution, i can imagine an HFS template working this way:
all files under an X folder
the template will just give the HTML necessary for the section highlighted above (DIV)
an index.html in the root, loading the DIV using AHAH
the HTML produced by the template is made so that clicking a folder link will just issue another AHAH call.

Good luck :P
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on June 30, 2008, 04:09:38 AM
lol, we could do that but I think BoneMan wants to keep it simple ;)
Title: Re: Question about RAWR template....By the way I love this template.
Post by: Foggy on June 30, 2008, 08:29:13 AM
I think he forgot...

Crap sorry, I did forget. Just been very busy with school and work lately.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on June 30, 2008, 10:28:09 PM
Simple or hard I'm up for any ideas.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: Foggy on July 01, 2008, 08:06:01 AM
lol, we could do that but I think BoneMan wants to keep it simple ;)
how about
set a default html file that contains the header, etc. replace the files div in it with an iframe and ten you only have to have %files% in the main section of the template.
simple enough

Simple or hard I'm up for any ideas.
I think it should be easy enough to accomplish.
My school holidays start next week so I will be able to look at it closer then until then I cant do much I'm afraid.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 01, 2008, 10:29:13 AM
Thanks that gets me started.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 10, 2008, 02:11:54 AM
OK guys I have to ask for help here I have tried several way to do the frames. All I want to do is have one page with a black background this page will have flash player and shout box 30% of the page. The other side will include HFS frame if you can picture what I'm trying to say. Any help with the HTML would be great.


Thanks in advance.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on July 10, 2008, 10:31:08 AM
Create 2 new html pages. One html page will have your left column of videos and shoutbox. The other will hold the frameset, call this one index.html and host it on the root of your server. In the frameset html page, set one frame to read '/' and the other to read the html file you are hosting.

Something like this for the index.html... (I just grabbed this from a site and edited it).

Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="noindex,nofollow">
<title>BoneMan's bone lair...</title>
</head>
<frameset cols="*,200" framespacing="0" frameborder="no" border="0">
  <frame src="/" name="leftFrame" frameborder="no" scrolling="yes" id="leftFrame">    
  <frame src="/right_frame.html" name="rightFrame"  marginheight="0" frameborder="no" scrolling="no" id="rightFrame">
</frameset>
<noframes><body></body></noframes>
</html>

Then you need the black page with the player and shoutbox... (right_frame.html)
Code: [Select]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>BoneMan's Vids and Shouts</title>
</head>
<body style="background:#000;">
<!-- VIDEO PLAYER -->
<!-- SHOUTBOX -->
</body>
</html>

EDIT:
I just had a thought '/' might not work, you may have to host the folders one level down in hfs. In a folder or something.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 10, 2008, 07:30:04 PM
Thanks will try tonight. OK this makes some sense to me now cool,
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 10, 2008, 09:51:40 PM
Look at me now. Thanks That_Stevens_Guy you the MAN!!!!!

Edit: I had to modify some things. I had to change breadcrumbs-not to happy with that. Also had to get rid of back button.
But I am happy with outcome.
 


(http://i33.tinypic.com/avmzhv.jpg)
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on July 11, 2008, 11:59:35 AM
Can probably be improved with macro, the back button hiding and altering the breadcrumbs.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 11, 2008, 04:43:40 PM
 I had a problem with breadcrumbs home would reload the entire page including both frames.
The back button would also do the same thing.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on July 12, 2008, 02:56:08 PM
Yes but this can be fixed by disabling the '/' address using macro. But you will have to work it out yourself, cause I am working on stuff.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: DJD on July 13, 2008, 05:44:24 AM
Would you mind telling me how you edited the header image THE DARK SIDE! P;ease!
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on July 13, 2008, 10:08:30 AM
Would you mind telling me how you edited the header image THE DARK SIDE! P;ease!

Locate the 'header-logo.jpg' in the theme you use, it is the image used there. A transparent gif or png would achieve the gradient behind whatever you want in there. To change the extension, find the linkage in the '.css' file.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 13, 2008, 02:55:28 PM
I did exactly that but made it a gif. I learned that a while ago working on my forum site. Hey I have another question. How would you make a frame scroll up and down but not side to side?



Edit: Never mind I figured it out.....I know that's what Google is for...... ;D
Title: Re: Question about RAWR template....By the way I love this template.
Post by: zcddr on July 28, 2008, 03:36:12 AM
OK, I LIKE THIS thanks
Title: Re: Question about RAWR template....By the way I love this template.
Post by: zcddr on July 28, 2008, 03:43:56 AM
为什么不能下载?
Title: Re: Question about RAWR template....By the way I love this template.
Post by: TSG on July 29, 2008, 01:57:27 AM
What?
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on July 29, 2008, 02:39:09 AM
OK.............HUH?
Title: Re: Question about RAWR template....By the way I love this template.
Post by: hochoi on July 31, 2008, 03:02:34 AM
hi BoneMan 
 
Your site is great! I would like to have video player [like yours], so what file i am gonna edit? PLease show me the way!

Thks too much!
Title: Re: Question about RAWR template....By the way I love this template.
Post by: BoneMan on August 01, 2008, 01:15:47 AM
With the new template no need has a built in player.
Title: Re: Question about RAWR template....By the way I love this template.
Post by: hochoi on August 01, 2008, 07:25:13 AM
i mean that i applied the 2 html files, but look not like yours! so sad!

I just install local only, not publish to internet!


I put everything HFS in d:\HFS

PLease help me! i used raw template 0.1.1 {Black color like your}
Title: Re: Question about RAWR template....By the way I love this template.
Post by: Jacjr731 on February 01, 2009, 03:51:48 AM
Ok,

So i'm new to the forums but i've been looking and your "style" is exactley what I am looking for. I have over 160+ movies on my HFS and I want to be able to stream movies on the site such as you have presented in your screenshots. Is this possable to do or a how-to forum? I am looking to do as you did.

Thank you!