Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Help! Laying out a page in Dreamweaver?
Old 07-29-2006, 02:43 PM Help! Laying out a page in Dreamweaver?
Junior Talker

Posts: 4
Trades: 0
Hi all!

Ok, I'm pretty new to designing Web sites. I'm NOT a designer and am completely new to Dreamweaver. I bought it a while back but am only just now using it and I have absolutely NO idea what I'm doing. I'm a writer, not a designer, so please forgive any dumb-sounding questions.

I'm trying to create a very basic Web page in Dreamweaver. I followed their tutorial the other night to create a basic page and created a table for the page layout. It worked out fine and everything looked just as the tutorial said it should (almost) when I was done.

Now I'm trying to create a new page using a table to lay it out. When I create the table, it runs off the right edge of the workspace window and I have to use the scroll bar at the bottom of the window to scroll to the far right. It's really annoying. Is there a way to set it so that I can see the whole thing on the workspace window without scrolling to the right???

I tried using the zoom tool, but that didn't help. I'm using the same settings I used in the tutorial:

1. Rows: 1
2. Columns: 3
3. Width: 700 pixels
4. Cell padding, spacing, and border thickness: 0

When I created a table with these same settings the other night, the table did NOT run off the edge of workspace window.

Thanks for your help!

Sincerely,
Michelle

Last edited by Nightengale; 07-29-2006 at 03:21 PM..
Nightengale is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 07-29-2006, 05:21 PM Re: Help! Laying out a page in Dreamweaver?
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
I would suggest a better way to build web pages:
Build*Your*Own Web*Site The*Right*Way Using*HTML*&*CSS - SitePoint Books
Tables for layout need to DIE.

How about showing us the actual code of what you've done ??
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 08-03-2006, 07:57 AM Re: Help! Laying out a page in Dreamweaver?
blue-dreamer's Avatar
King Spam Talker

Posts: 1,222
Location: Middle England
Trades: 0
Can you post your page html and css here then we can see
blue-dreamer is offline
Reply With Quote
View Public Profile
 
Old 08-03-2006, 08:41 AM Re: Help! Laying out a page in Dreamweaver?
JohnJ's Avatar
Extreme Talker

Posts: 198
Location: Raleigh, NC
Trades: 0
Without the benefit of seeing your code I suggest that the problem must be in your width setting - - Perhaps you set a width of 7000 instead of 700?

I suggest that you do one of two things - (1) Throw the page away and start again with a new page (afterall you've probably only got a few minutes invested in it at this time) or (2) take a look at the HTML code and fix the current page.

In order to view the HTML code you should set the page in 'split' mode (look at the top of your page - you'll see three tabs Code, Split and Design - click on Split and you'll see the code displayed in the top half of your screen and the page displayed in the bottom half.

The code for your page should be displayed between the body tags (<body> and </body>) and should look something like this:

<body>
<table width="700" border="1" cellspacing="0" cellpadding="0">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</table>
</body>

You'll notice that I always start a page layout with the border turned on so I can easily see what the layout looks like - You can turn it back off later by editing the code to border="0".

Now that we have your page looking like you want I have one other suggestion - - go buy a few basic books to help you out.... Dreamweaver is a wonderful product but it really is NOT a magic bullet - - you need to understand at least a bit of HTML or you'll forever been messing around trying to make things look right. I'd suggest that you buy a couple of books like 'Sams Teach Yourself HTML 4 in 24 hours' and 'Sams Teach yourself Dreamweaver MS 2004 in 24 hours'. You can get these from your local book store or through Amazon.

If you are really in a hurry I'd even suggest that you go the Barnes and Nobel with a notebook and a pen, take one of the books off the shelf and start taking notes while you wait for the books to arrive.

Once you've consumed those books and are really into the website development business you'll want to buy more advanced books like - 'The Complete Reference HTML; and 'Dreamweaver MX 2004 Bible' - - When you purchase the advanced books I strongly suggest that you treat them like a Sams manual - - Sit down and read them, do the exercises, practice the coding example and really understand the subjects - - Spend at least a week with each book - - You'll be a pro in no time....

JohnJ
__________________
JohnJ

Please login or register to view this content. Registration is FREE

WebImages Inc. - Raleigh NC

Last edited by JohnJ; 08-03-2006 at 08:46 AM..
JohnJ is offline
Reply With Quote
View Public Profile Visit JohnJ's homepage!
 
Old 08-03-2006, 03:03 PM Re: Help! Laying out a page in Dreamweaver?
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Just learn to do it WITHOUT tables for layout. They are soooooo 1997 and learn MODERN web design and forget the old deprecated tags like <font> <center> and so, MANY others.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
Reply With Quote
View Public Profile
 
Old 08-03-2006, 07:30 PM Re: Help! Laying out a page in Dreamweaver?
moondog's Avatar
Ultra Talker

Posts: 256
Location: Croatia
Trades: 0
Easy to say, LadynRed, but it is hard to change habits.

Many people found tables are easier for making web pages.
moondog is offline
Reply With Quote
View Public Profile
 
Old 08-03-2006, 07:50 PM Re: Help! Laying out a page in Dreamweaver?
Experienced Talker

Posts: 49
Trades: 0
Quote:
Originally Posted by moondog View Post
Easy to say, LadynRed, but it is hard to change habits.

Many people found tables are easier for making web pages.
This guy is NEW to web development... There are no habits to change - it's just avoiding mistakes that fsck over people who try to manage their sites.
__________________

Servo888 is offline
Reply With Quote
View Public Profile
 
Old 08-04-2006, 05:13 AM Re: Help! Laying out a page in Dreamweaver?
moondog's Avatar
Ultra Talker

Posts: 256
Location: Croatia
Trades: 0
OK Servo888...

But almost every newbie start designing pages via tables....They think that tables are best for positioning elements on page (wrong). Later, they will see difference.

Of course that CSS is better way.
moondog is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Help! Laying out a page in Dreamweaver?
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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 Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.29595 seconds with 12 queries