Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Design Lobby

Web Design Lobby Forum for general web design issues not specific to scripting or graphics.


Reply
 
LinkBack Thread Tools Display Modes
Share |
  #1 (permalink)  
Old 12-22-2004, 11:08 AM
SFC's Avatar
SFC SFC is offline
Senior Member
Latest Blog:
None

 
Join Date: 11-05-04
Posts: 204
iTrader: 0 / 0%
Cutting Images For Web Design

I am intersted in learning a new technique when developing my sites... Most of my sites are pretty simple as seen at www.fullmoonadventuresinc.com Simple header, buttons, etc.

But I would like to have the header image be part of the menu bar. Such as this site: http://www.charlotteharboroutfitters.com/index.html





My question is.. Do I cut the image in photoshop.. how do I keep everything in line? Is there a tutorial you can send me too.. It seems pretty simple...

Thanks
Mike
 
Reply With Quote
  #2 (permalink)  
Old 12-22-2004, 11:21 AM
evilregis's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 08-06-04
Location: Ontario
Posts: 206
iTrader: 0 / 0%
Are you wanting to create the site using tables for layout?
 
Reply With Quote
  #3 (permalink)  
Old 12-22-2004, 11:26 AM
SFC's Avatar
SFC SFC is offline
Senior Member
Latest Blog:
None

 
Join Date: 11-05-04
Posts: 204
iTrader: 0 / 0%
I know how to create the table.. but how would I cut the image so that the the bottom part lines up with my menu navigation bar perfectlY? I'm not sure If I'm explaining correctly.

Mike
 
Reply With Quote
  #4 (permalink)  
Old 12-22-2004, 11:29 AM
SFC's Avatar
SFC SFC is offline
Senior Member
Latest Blog:
None

 
Join Date: 11-05-04
Posts: 204
iTrader: 0 / 0%
Here's another example http://www.wantsomegetsomecharters.com/



 
Reply With Quote
  #5 (permalink)  
Old 12-22-2004, 12:32 PM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
As long as you make the table cells the right sizes, the images should line up. Maybe I don't get what you are asking ?
 
Reply With Quote
  #6 (permalink)  
Old 12-22-2004, 12:43 PM
gorillaboy's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 11-01-04
Location: USA! USA! USA!
Posts: 1,258
iTrader: 0 / 0%
You probably have an extra <tr> in there.
 
Reply With Quote
  #7 (permalink)  
Old 12-22-2004, 12:50 PM
SFC's Avatar
SFC SFC is offline
Senior Member
Latest Blog:
None

 
Join Date: 11-05-04
Posts: 204
iTrader: 0 / 0%
I've never used the slice tool to cut up my images... I'll mess with it tonigth and ask some more specific questions...

THanks
 
Reply With Quote
  #8 (permalink)  
Old 12-22-2004, 04:47 PM
littleFella's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 06-20-04
Location: Ontario
Posts: 1,758
iTrader: 0 / 0%
Paintshop Pro does the whole thing automatically; outputs an entire html code for the table and chopped pictures. I think Photoshop can do that too.
 
Reply With Quote
  #9 (permalink)  
Old 12-22-2004, 04:49 PM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
Yea, but the code is ugly. Much better off coding it yourself.
 
Reply With Quote
  #10 (permalink)  
Old 12-22-2004, 05:25 PM
evilregis's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 08-06-04
Location: Ontario
Posts: 206
iTrader: 0 / 0%
Jazzee is right. I've never used PSP's slicer, but I've seen Photoshop's in action and it names all the images ##.[jpg|gif|png] and creates horrible code. Perhaps PSP is better, but I doubt it.
 
Reply With Quote
  #11 (permalink)  
Old 12-22-2004, 06:26 PM
littleFella's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 06-20-04
Location: Ontario
Posts: 1,758
iTrader: 0 / 0%
I'm really at a loss here. I can't imagine a lot of beauty in a simple html table code.

just did this:

HTML Code:
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="249" HEIGHT="200"> <TR> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="66"> <IMG NAME="Image120" SRC="Image12_1x1.gif" WIDTH="83" HEIGHT="66" BORDER="0"> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="66"> <IMG NAME="Image121" SRC="Image12_1x2.gif" WIDTH="83" HEIGHT="66" BORDER="0"> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="66"> <IMG NAME="Image122" SRC="Image12_1x3.gif" WIDTH="83" HEIGHT="66" BORDER="0"> </TR> <TR> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="67"> <IMG NAME="Image123" SRC="Image12_2x1.gif" WIDTH="83" HEIGHT="67" BORDER="0"> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="67"> <IMG NAME="Image124" SRC="Image12_2x2.gif" WIDTH="83" HEIGHT="67" BORDER="0"> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="67"> <IMG NAME="Image125" SRC="Image12_2x3.gif" WIDTH="83" HEIGHT="67" BORDER="0"> </TR> <TR> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="67"> <IMG NAME="Image126" SRC="Image12_3x1.gif" WIDTH="83" HEIGHT="67" BORDER="0"> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="67"> <IMG NAME="Image127" SRC="Image12_3x2.gif" WIDTH="83" HEIGHT="67" BORDER="0"> <TD ROWSPAN="1" COLSPAN="1" WIDTH="83" HEIGHT="67"> <IMG NAME="Image128" SRC="Image12_3x3.gif" WIDTH="83" HEIGHT="67" BORDER="0"> </TR> </TABLE>
The code looks as pretty as can be. The 12 seconds it took to generate the code and sliced images more than makes up for some future prettyfying, no?
 
Reply With Quote
  #12 (permalink)  
Old 12-22-2004, 06:30 PM
No Longer Here
Latest Blog:
None

 
Join Date: 09-27-03
Location: State College, PA
Posts: 4,273
iTrader: 0 / 0%
Quote:
Originally Posted by littleFella
The code looks as pretty as can be. The 12 seconds it took to generate the code and sliced images more than makes up for some future prettyfying, no?
There is a lot of unnecessary code in there.

Also, if you plan to use xhtml, the code cannot be in ALL CAPS like that.
 
Reply With Quote
  #13 (permalink)  
Old 12-22-2004, 06:45 PM
littleFella's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 06-20-04
Location: Ontario
Posts: 1,758
iTrader: 0 / 0%
Quote:
Originally Posted by Jazzee
There is a lot of unnecessary code in there.
Sure, I would get rid of *SPAN in most cases. Height and width might have to stay anyway, especially if you want top treat the sliced mage as a background.

Quote:
Originally Posted by Jazzee
Also, if you plan to use xhtml, the code cannot be in ALL CAPS like that.
In my editor I did:

CTRL+A
CTRL+F5

And voila! all text in lower case. Total 3 seconds on a bad day. Typing would take a few seconds longer.

Of course I agree that the fastest way is the way you know. I like doing my work the way I know how and preferably fast.
 
Reply With Quote
  #14 (permalink)  
Old 12-22-2004, 08:38 PM
SFC's Avatar
SFC SFC is offline
Senior Member
Latest Blog:
None

 
Join Date: 11-05-04
Posts: 204
iTrader: 0 / 0%
where is this automatic slicer in photoshop?

Thanks
 
Reply With Quote
  #15 (permalink)  
Old 12-27-2004, 07:35 PM
docquesting's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 07-14-04
Location: South-Middle, Georgia
Posts: 1,228
iTrader: 0 / 0%
Automatic slicer yes where is it and what is it?
__________________
Inexpensive Hosting with Quality!
 
Reply With Quote
  #16 (permalink)  
Old 12-27-2004, 08:03 PM
Atom's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-12-03
Location: Tennessee, USA
Posts: 32,616
iTrader: 0 / 0%
Quote:
Originally Posted by SFC
where is this automatic slicer in photoshop?

Thanks
Third tool down on the right, in the tools palette.
 
Reply With Quote
  #17 (permalink)  
Old 12-27-2004, 08:05 PM
Atom's Avatar
Senior Member
Latest Blog:
None

 
Join Date: 10-12-03
Location: Tennessee, USA
Posts: 32,616
iTrader: 0 / 0%
Quote:
Originally Posted by docquesting
Automatic slicer yes where is it
Third tool down on the right, in the tools palette.
Quote:
Originally Posted by docquesting
and what is it?
help/photoshop help/index/S/scroll down to the word slice



You use slices to divide a source image into functional areas. When you save the image as a Web page, each slice is saved as an independent file that contains its own settings, color palette, links, rollover effects, and animation effects. You can use slices to achieve faster download speeds. Slices are also advantageous when working with images that contain different types of data. For example, if one area of an image needs to be optimized in GIF format to support an animation, but the rest of the image is better optimized in JPEG format, you can isolate the animation using a slice.

etc...

Last edited by Atom; 12-27-2004 at 08:12 PM.
 
Reply With Quote
  #18 (permalink)  
Old 12-27-2004, 08:17 PM
docquesting's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 07-14-04
Location: South-Middle, Georgia
Posts: 1,228
iTrader: 0 / 0%
Ok cool Ill have to play around with that.
__________________
Inexpensive Hosting with Quality!
 
Reply With Quote
  #19 (permalink)  
Old 12-27-2004, 11:23 PM
DaveyBoy's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: England.
Posts: 3,886
iTrader: 0 / 0%
i hate using PS to make my rollovers and menus and stuff, makes about 4326526 tiny superfluous gif's most of the time.
 
Reply With Quote
  #20 (permalink)  
Old 12-28-2004, 07:32 AM
SN3's Avatar
SN3 SN3 is offline
Senior Member
Latest Blog:
None

 
Join Date: 10-13-03
Location: Work, USA
Posts: 2,795
iTrader: 0 / 0%
Quote:
Originally Posted by evilregis
Jazzee is right. I've never used PSP's slicer, but I've seen Photoshop's in action and it names all the images ##.[jpg|gif|png] and creates horrible code. Perhaps PSP is better, but I doubt it.
Hand coding is the way to go. PS makes white spaces images, crazy.
__________________
[affiliate link removed. V7N Moderator]
 
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby

Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Acquiring Images For Design WM-Scott Web Design Lobby 5 02-23-2008 10:48 AM
help with picture cutting in Photoshop Maksa Graphic Design Forum 17 04-04-2007 02:06 PM
Miva Checkout Screens are Cutting Off Data?!?!?!?!?! adam2003w Web Hosting Forum 1 11-21-2004 02:30 PM


V7N Network
Get exposure! V7N I Love Photography V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 11:29 AM.
Powered by vBulletin
Copyright © 2000-2013 Jelsoft Enterprises Limited.
Copyright © 2003 - 2013 Escalate Media LP




Search Engine Optimization by vBSEO 3.6.0 RC 2 ©2011, Crawlability, Inc.