Need Help - remove frames, all one page

This is a discussion on "Need Help - remove frames, all one page" within the Web Page Design section. This forum, and the thread "Need Help - remove frames, all one page are both part of the Design Your Website category.



 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1  
Old Jun 3rd, 2006, 23:23
Junior Member
Join Date: Jun 2006
Location: new jersey
Age: 18
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Need Help - remove frames, all one page

Hello, if you could provide me with some assistance I would be grateful. At my current site http://www31.brinkster.com/scfreak/ You can see the site is divided into three frames, the left, middle, and right, all divided separately

My question is, how would I remove the frames, and have the site appear in the same format as it is now, only without being divided into three sections. So i'd only have one scrollbar on the right, and when I move the site up/down all of the text moves, but still having the links seperated on the left/right, from the main content. Is this possible?


Thanks in advance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Jun 3rd, 2006, 23:34
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

Yes of course its possible.

But looking at your site, you have a lot of work to do.

You need to read up on coding standards, the seperation of content markup from layout and style. Learn and divs and using css will become your friends.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Jun 3rd, 2006, 23:42
Junior Member
Join Date: Jun 2006
Location: new jersey
Age: 18
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

Yes I know but still any advice on how to do so...what to change.. etc.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Jun 3rd, 2006, 23:51
Highly Reputable Member
Join Date: Aug 2005
Location: 3rd Branch Up, Old Oak.
Age: 48
Posts: 658
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

Not quite what you asked but my advice would be to remove the 'music'.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old Jun 4th, 2006, 00:03
Junior Member
Join Date: Jun 2006
Location: new jersey
Age: 18
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

Yeah I'll probably get rid of it, but right now I want to get the frame thing worked out (even though the music would be a simple delete lol )
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old Jun 4th, 2006, 22:17
Junior Member
Join Date: Jun 2006
Location: new jersey
Age: 18
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

I think I have it all set up, or at least heading towards the right direction. Check out the site now, but I have a few questions

1. In Firefox everything displays properly, however in IE and Opera the Background is missing, probably some error on my part, but i'm not sure where to fix it at this point.

2. How would I make it so the other pages come up in the same script format?

3. How do I have my scrollbar colors change - like it was in the past format, that same code doesn't appear to work.

4. Anyother comments/suggestions to improve the site please say.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old Jun 5th, 2006, 13:06
minute44's Avatar
Most Reputable Member

SuperMember
Join Date: Apr 2006
Location: Nottingham UK
Age: 25
Posts: 1,351
Blog Entries: 1
Thanks: 0
Thanked 1 Time in 1 Post
Re: Need Help - remove frames, all one page

OK mate...

This is how I would tackle this bad boy.
  1. Look at a few CSS and (X)HTML tutorial sites to get you up to speed on things like coding standards.
    http://www.w3schools.com/xhtml/default.asp
    http://www.elated.com/tutorials/authoring/css/
    Those should get you started.
  2. Once you are comfortable with that you need to create your layout. Remember, Keep your Content and layout seperate with CSS... I assume you want a three column layout so check this out:
    http://css.maxdesign.com.au/floatutorial/index.htm
    this should help you to create the basic layout in three columns without frames or tables.
  3. Once you have a layout you can begin styling it. play with the CSS and get it to look how you want it to look. This will take some time and may get frustrating but please, I assure you it's worth it.
  4. Create a basic navigation. I think List based CSS navigation is the coolest thing around these days. Check out the following:
    http://css.maxdesign.com.au/listamatic/index.htm
    That should get you going in the right direction.
  5. Save an empty version of the page as your template.
  6. Now get your content in. Don't let your coding standards slip here, it can be very easy to get lazy and not mark your content up in the correct way but once again, the outcome will be worth it.
  7. Build up your other pages in the same way and you're good to go.
You may see this as a daunting task (and it can be) but don't worry, you have a mind for web design, you've shown that by attempting to make a website. You just need to hone your skills and you'll be unstoppable.

I'll help you through this project if you like... PM me if you need any help along the way.

Good luck
Last Blog Entry: Annoying people.... (Jan 16th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old Jun 5th, 2006, 13:12
Most Reputable Member
Join Date: Aug 2005
Location: North Wales, United Kingdom
Age: 21
Posts: 1,093
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

No idea if your hosting can take php, but if it can this is what to do.

Copy all the code from frame1 into a notepad file then save as frame1.php
Then on your main index page replace all the frame1 code to
PHP: Select all

<?php include("frame1.php");?>

Then do the same for frame2 and frame3

Be sure to upload the files in the same folder as your index file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9  
Old Jun 5th, 2006, 13:28
Reputable Member
Join Date: Jul 2005
Location: Indiana, USA
Age: 29
Posts: 153
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help - remove frames, all one page

I would use the includes like Sypher said (to have site wide editing capabilities) and you can use CSS (learn with the links posted by minute44) to divide (DIV) the site into sections where you can control and position them appropriately.

Have fun, CSS is your answer!
Last Blog Entry: Whats in a name? (Feb 20th, 2008)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
help, remove, frames, page

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
how to remove frames camarun20 Web Page Design 6 Mar 26th, 2008 14:11
Remove links with movie clip over it to another page Janisf Flash & Multimedia Forum 1 Jul 4th, 2007 03:47
off-site linking to a particular page in a site made with frames. NEED HELP vandiermen Web Page Design 1 Aug 6th, 2006 13:30
remove white line from the frames swetha Web Page Design 0 Jan 18th, 2006 10:53
Remove page number malambing57 Classic ASP 1 Oct 14th, 2004 08:47


All times are GMT. The time now is 16:49.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42