Home User CP Browse Members Calendar Register Today!  
Get New posts Faq / Help?
   

Not A Member Yet? Register today and become part of the community.

Go Back   Forum > World Wide Web > Web Graphic, Design, Digital Images

Web Graphic, Design, Digital Images Talk about design, layout, your own work, photography, software related to graphics etc...

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-23-2007, 12:19 PM
spoweb
Status: Offline
Member
 
Join Date: Nov 2007
Posts: 51
spoweb is on a distinguished road
Default Frames or tables?

Which makes a better layout? Using Frames and loading about four different files or use tables and have to add a whole lot more code? I use frames, but they all load at different times. Most of the page is finished loading, but one sidebar is still white.
Reply With Quote
Sponsored Links

  #2 (permalink)  
Old 12-17-2007, 07:36 PM
stalker
Status: Offline
Junior Member
 
Join Date: Dec 2007
Posts: 11
stalker is on a distinguished road
Default

i find that frames look a lot better overall than tables. Plus tables use a lot more code.

I'd probably be able to help a bit more if i new what you were trying to code?
Reply With Quote
  #3 (permalink)  
Old 12-28-2007, 12:12 AM
bizzard
Status: Offline
Senior Member
 
Join Date: Jan 2006
Location: A small remote village in Kerala, India
Posts: 434
bizzard is on a distinguished road
Send a message via MSN to bizzard Send a message via Yahoo to bizzard
Default

I don't prefer using frames. Some browsers won't support it and the page will look very different in different resolutions and different browsers. Though tables use a lot more code, it loads much faster than the frames....
If you use frame for a navigation bar, which must always be displayed with the page, try creating a CSS or javascript navigation menu, which reduces the code considerably.
__________________
At last a domain for myself.... www.tvmanukrishnan.uni.cc

Check my personal blog @
blog.tvmanukrishnan.uni.cc

My pet project:
Reply With Quote
  #4 (permalink)  
Old 12-28-2007, 03:15 PM
spoweb
Status: Offline
Member
 
Join Date: Nov 2007
Posts: 51
spoweb is on a distinguished road
Default

Yeah, well actually I've stopped using both frames AND tables. Well, I still use tables a little...Now I'm using layouts with full CSS. No tables. No frames. All CSS. I do notice though that the page looks slightly different between IE and Firefox, but still looks ok. Thanks for the replies!
Reply With Quote
  #5 (permalink)  
Old 01-01-2008, 01:23 AM
wired076
Status: Offline
Senior Member
 
Join Date: Nov 2005
Location: Wired
Posts: 415
wired076 is on a distinguished road
Send a message via ICQ to wired076 Send a message via AIM to wired076 Send a message via MSN to wired076 Send a message via Yahoo to wired076 Send a message via Skype™ to wired076
Default

I agree with spoweb it is best practice to now use pure css to format html pages and gives you much more flexibility. It takes a little time to get used to using css properly but if used correctly makes a lot less code in the long run as you can create external css files that if you change the css file will change the layout of the whole site instead of having to reduplicate all the code throughout the site and then change the code on all the pages when you make an edit.
__________________
Please contact me via email for webmaster work/support at reasonable prices.
Email: admin@itconstruct.com.au

Visit http://www.itconstruct.com.au
Reply With Quote
  #6 (permalink)  
Old 01-04-2008, 06:10 PM
buyingit
Status: Offline
Member
 
Join Date: Dec 2007
Posts: 60
buyingit is on a distinguished road
Default

I WILL ALWAYS RECOMMEND
use php include function & use tables for loading pages

this will load at the sametime & also be a better & faster option for you

try it out
all the best
Reply With Quote
  #7 (permalink)  
Old 01-20-2008, 07:05 AM
snoop1990
Status: Offline
Senior Member
 
Join Date: Dec 2007
Location: Germany (in a small town)
Posts: 560
snoop1990 is on a distinguished road
Default

Quote:
Originally Posted by buyingit
I WILL ALWAYS RECOMMEND
use php include function & use tables for loading pages
Me too ! Because you do not need frames which might cause incompatibility errors and you have less code as well as better options for interactivity.

At the moment I use ruby on rails and want to integrate AJAX to be even faster.
Reply With Quote
  #8 (permalink)  
Old 01-22-2008, 01:47 AM
wired076
Status: Offline
Senior Member
 
Join Date: Nov 2005
Location: Wired
Posts: 415
wired076 is on a distinguished road
Send a message via ICQ to wired076 Send a message via AIM to wired076 Send a message via MSN to wired076 Send a message via Yahoo to wired076 Send a message via Skype™ to wired076
Default

I would never recommend using frames either.

Tables are a good starter for new users but using css is the best way to format your site and tell everything where it should be located.
__________________
Please contact me via email for webmaster work/support at reasonable prices.
Email: admin@itconstruct.com.au

Visit http://www.itconstruct.com.au
Reply With Quote
  #9 (permalink)  
Old 02-16-2008, 04:04 AM
snoop1990
Status: Offline
Senior Member
 
Join Date: Dec 2007
Location: Germany (in a small town)
Posts: 560
snoop1990 is on a distinguished road
Default

Quote:
Originally Posted by wired076
using css is the best way to format your site
I tried learned css in the past two weeks and have to say it is much more comfortable then tables.

The reason are:
-no more bothering with colspan and rowspan issues
-each cell can have its own dimensions
-you can overlay parts (which is impossible with tables)

reasons against:
-I do not know any wysiwyg editor for css based designs (but I do not think a wysiwyg editor is the right choice for professional developer)

So I can only recommend to use css based layouts for your sites.
Reply With Quote
  #10 (permalink)  
Old 02-21-2008, 02:43 AM
bizzard
Status: Offline
Senior Member
 
Join Date: Jan 2006
Location: A small remote village in Kerala, India
Posts: 434
bizzard is on a distinguished road
Send a message via MSN to bizzard Send a message via Yahoo to bizzard
Default

I have also shifted to php along with CSS. Its much better than using frames. Creating different pages for each part of the site and including it to a single page with <? include ''?> code looks so simple.
__________________
At last a domain for myself.... www.tvmanukrishnan.uni.cc

Check my personal blog @
blog.tvmanukrishnan.uni.cc

My pet project:
Reply With Quote
  #11 (permalink)  
Old 02-21-2008, 05:21 AM
snoop1990
Status: Offline
Senior Member
 
Join Date: Dec 2007
Location: Germany (in a small town)
Posts: 560
snoop1990 is on a distinguished road
Default

Yes, that is the point on my side to ! I recreated a side a friend of mine designed some years ago using pure html. I added a css layout and in the end we have half the lines of code and it also looked even better. So Css really is a thing you should use if you want to design your own homepage.

Regrades Snoop1990
Reply With Quote
  #12 (permalink)  
Old 03-29-2008, 10:06 PM
bizzard
Status: Offline
Senior Member
 
Join Date: Jan 2006
Location: A small remote village in Kerala, India
Posts: 434
bizzard is on a distinguished road
Send a message via MSN to bizzard Send a message via Yahoo to bizzard
Default

I redesigned my site too with CSS and PHP. With PHP, it was much easier and it reduced the size of pages. Since I used <? include ''?> option of php for displaying Ads and the navigation bar, it will be easier to make the changes in the ad code applicable to all pages.

But, CSS displays the page different in Linux and Windows even in the same firefox browser... Main problems are with the width and other sizes.
__________________
At last a domain for myself.... www.tvmanukrishnan.uni.cc

Check my personal blog @
blog.tvmanukrishnan.uni.cc

My pet project:
Reply With Quote
  #13 (permalink)  
Old 03-29-2008, 10:07 PM
bizzard
Status: Offline
Senior Member
 
Join Date: Jan 2006
Location: A small remote village in Kerala, India
Posts: 434
bizzard is on a distinguished road
Send a message via MSN to bizzard Send a message via Yahoo to bizzard
Default

I redesigned my site too with CSS and PHP. With PHP, it was much easier and it reduced the size of pages. Since I used <? include ''?> option of php for displaying Ads and the navigation bar, it will be easier to make the changes in the ad code applicable to all pages.

But, CSS displays the page different in Linux and Windows even in the same firefox browser... Main problems are with the width and other sizes.
__________________
At last a domain for myself.... www.tvmanukrishnan.uni.cc

Check my personal blog @
blog.tvmanukrishnan.uni.cc

My pet project:
Reply With Quote
  #14 (permalink)  
Old 03-30-2008, 01:12 AM
snoop1990
Status: Offline
Senior Member
 
Join Date: Dec 2007
Location: Germany (in a small town)
Posts: 560
snoop1990 is on a distinguished road
Default

Quote:
Originally Posted by bizzard View Post
But, CSS displays the page different in Linux and Windows even in the same firefox browser... Main problems are with the width and other sizes.
Yes, I noticed the same thing. It is horrible how different all those browsers are and it takes me a long time to figure out how to design my side until it looked at least similar on all the different browsers.
Reply With Quote
  #15 (permalink)  
Old 04-26-2008, 09:37 AM
bizzard
Status: Offline
Senior Member
 
Join Date: Jan 2006
Location: A small remote village in Kerala, India
Posts: 434
bizzard is on a distinguished road
Send a message via MSN to bizzard Send a message via Yahoo to bizzard
Default

I too have much problems with it. So, is there any way to have different CSS codes for different browsers and even different Operating systems?
__________________
At last a domain for myself.... www.tvmanukrishnan.uni.cc

Check my personal blog @
blog.tvmanukrishnan.uni.cc

My pet project:
Reply With Quote
  #16 (permalink)  
Old 04-26-2008, 09:59 AM
snoop1990
Status: Offline
Senior Member
 
Join Date: Dec 2007
Location: Germany (in a small town)
Posts: 560
snoop1990 is on a distinguished road
Default

Quote:
Originally Posted by bizzard View Post
I too have much problems with it. So, is there any way to have different CSS codes for different browsers and even different Operating systems?
You can do that using javascript, request the browser name and then dynamical choose the right style codes (css). That should fix your problem !
Reply With Quote
  #17 (permalink)  
Old 07-01-2008, 03:53 PM
tronador
Status: Offline
Member
 
Join Date: Jun 2008
Posts: 30
tronador is on a distinguished road
Default

Dont use frames, use tables, divs tags and CSS instead, if you want a very nice site use Javascript and AJAX libraries as JQuery and Mootools
Reply With Quote
  #18 (permalink)  
Old 07-02-2008, 08:34 PM
zztech
Status: Offline
Member
 
Join Date: Aug 2007
Posts: 62
zztech is on a distinguished road
Default

Yup, I agree with Tronador. No one uses frames anymore. They're too cluttery. Tables are a possible choice, but I prefer CSS because it is more versatile. Plus, if you've got Dreamweaver, the CSS should be incredibly easy, which is how I've avoided properly learning CSS.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
vB 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
PHP and frames spoweb PHP 5 07-19-2008 09:16 PM
Problem with Frames future24 Free Web Hosting Support 8 11-28-2005 11:39 AM
Frames DavoutGraphical Free Web Hosting Support 2 11-24-2005 08:16 AM
Frames Problem Kirk Free Web Hosting Support 9 11-16-2005 06:36 PM


All times are GMT -7. The time now is 02:52 AM.

Skin Design By vBSkinworks



Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.

Profuse Solutions LLC

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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75