Not sure how to title this.

This is a discussion on "Not sure how to title this." within the Web Page Design section. This forum, and the thread "Not sure how to title this. are both part of the Design Your Website category.



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

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 14th, 2006, 01:42
New Member
Join Date: Sep 2006
Location: Michigan
Age: 23
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Not sure how to title this.

My frustration is getting the best of me. I'm trying to create a site that looks like this:

http://i101.photobucket.com/albums/m...ketts/mock.jpg

I did it in photoshop, and sliced all the images. When I place it into Dreamweaver however, and view a preview in Firefox (and other browsers) it doesn't look how I want it to.

I would like the blue top and the blue bottom to go all the way across the screen. From the left, to the right.

Anyone think they might be able to steer me in the right direction? Hell you can even call me if you think you could explain it better that way!! I just need a head start and to be headed in the right direction. I'm usually pretty good at figuring things out on my own.

Thanks all,

Matt Ricketts
Reply With Quote

  #2 (permalink)  
Old Sep 14th, 2006, 09:13
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: Not sure how to title this.

We need the actuall html code to see what you have so far.

Frankly, the Photoshop approach is ok for doing mockups of how the site will look. You then need to code in a proper structured, cross browser, standards and accessible compliant way.

Leave Dreamweaver and use a text editor. You will understand far more about what is going on and have far finer control over the finished work.
Reply With Quote
  #3 (permalink)  
Old Sep 14th, 2006, 12:08
New Member
Join Date: Sep 2006
Location: Michigan
Age: 23
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Not sure how to title this.

ok I'll try to. I'm not very good with coding on my own though... unfortunately.
Reply With Quote
  #4 (permalink)  
Old Sep 14th, 2006, 12:11
New Member
Join Date: Sep 2006
Location: Michigan
Age: 23
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Not sure how to title this.

here's the code though, if anyone thinks they can steer me. thanks



<html>
<head>
<title>Split Design</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
background-color: #000000;
}
-->
</style></head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">


<div align="center">
<!-- ImageReady Slices (Split Design.psd) -->
<table width="1003" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#000000" id="Table_01">
<tr>
<td colspan="3" rowspan="2">
<img src="images/logo.gif" width="402" height="137" alt=""></td>
<td width="98" rowspan="3">
<img src="images/home.gif" width="98" height="138" alt=""></td>
<td width="126" rowspan="3">
<img src="images/buynow.gif" width="126" height="138" alt=""></td>
<td width="121" rowspan="3">
<img src="images/reviews.gif" width="121" height="138" alt=""></td>
<td colspan="2">
<img src="images/faq.gif" width="94" height="58" alt=""></td>
<td width="163" bgcolor="#505090">
<img src="images/shopping.gif" width="159" height="58" alt="">
<label></label></td>
<td width="10">
<img src="images/spacer.gif" width="1" height="58" alt=""></td>
</tr>
<tr>
<td width="93" rowspan="2">
<img src="images/faq-08.gif" width="93" height="80" alt=""></td>
<td colspan="2" rowspan="2">
<img src="images/contact.gif" width="160" height="80" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="79" alt=""></td>
</tr>
<tr>
<td width="289" rowspan="2">
<img src="images/wrizzpic.gif" width="289" height="314" alt=""></td>
<td width="91" rowspan="2">
<img src="images/vrule.gif" width="91" height="314" alt=""></td>
<td width="22" rowspan="3">
<img src="images/body.gif" width="22" height="469" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="1" alt=""></td>
</tr>
<tr>
<td colspan="6" rowspan="2" bordercolor="" bgcolor="#000000">&nbsp;</td>
<td>
<img src="images/spacer.gif" width="1" height="313" alt=""></td>
</tr>
<tr>
<td colspan="2">
<img src="images/underpic.gif" width="380" height="155" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="155" alt=""></td>
</tr>
<tr>
<td colspan="9">
<img src="images/bottom.gif" width="1000" height="54" alt=""></td>
<td>
<img src="images/spacer.gif" width="1" height="54" alt=""></td>
</tr>
<tr>
<td>
<img src="images/spacer.gif" width="289" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="91" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="22" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="98" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="126" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="121" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="93" height="1" alt=""></td>
<td width="1">
<img src="images/spacer.gif" width="1" height="1" alt=""></td>
<td>
<img src="images/spacer.gif" width="159" height="1" alt=""></td>
<td></td>
</tr>
</table>
<!-- End ImageReady Slices -->
</div>
</body>
</html>
Reply With Quote
  #5 (permalink)  
Old Sep 14th, 2006, 14:21
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Skype™ to ukgeoff
Re: Not sure how to title this.

Actually what I was hoping for was a link to a page so we can see the page inclusive of any graphics.

Just looking through the code you have provided, and assuming this is all there is on the page, there are certain obvious things you need to do:
  • Choose a DOCTYPE for your code
  • Get rid of all that table layout and code to standard techniques with <div>'s etc.
  • Remove all CSS into a seperate file and <link... it into your html pages
  • Do not use propriatory attributes - standards compliant only
Reply With Quote
  #6 (permalink)  
Old Sep 14th, 2006, 20:35
New Member
Join Date: Sep 2006
Location: Michigan
Age: 23
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Not sure how to title this.

yeah I suppose I do have a lot of work to do then seeing as I don't really know what <div> does or how to use it. sigh... can you believe that I was taught to build websites like that in college? we just used tables to layout everything and I never learned how to make a good layout by coding.
Reply With Quote
  #7 (permalink)  
Old Sep 14th, 2006, 20:42
moojoo's Avatar
Moderator
Join Date: Aug 2005
Location: Texas
Age: 31
Posts: 1,763
Blog Entries: 1
Thanks: 0
Thanked 18 Times in 18 Posts
Send a message via AIM to moojoo Send a message via MSN to moojoo Send a message via Yahoo to moojoo
Re: Not sure how to title this.

I have yet to see any one learn the correct way in college. A friend of mine was taking web design in college so I showed her how to do it, she got an A despite using nothing they taught her. They teach silly outdated things.
__________________
The internet is just a fad.
http://www.mevans76.com
Last Blog Entry: Apps every Mac based web dev should consider (Jul 10th, 2008)
Reply With Quote
Reply

Tags
sure, title

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
title? Aesir Web Page Design 4 Mar 12th, 2008 15:58
<title>Tennis London : Tennis History</title> how should it read Oak Search Engine Optimization (SEO) 5 Feb 6th, 2008 01:31
ALT & TITLE tags? RZX Developer Search Engine Optimization (SEO) 5 Dec 18th, 2007 15:10
alt or title geyids Web Page Design 4 Aug 20th, 2007 15:56


All times are GMT. The time now is 18:00.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs 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 43