Quick Login   
 
Register AdminFusion Tutorials
 
Featured Sponsors


One.com Domain and Hosting


vBulletin, phpBB, & IPB Skins vBulletin Skins

Register
Register
Forum of the Month
vBulletin Setup
fotm

A vBulletin site devoted to helping webmaster optimize their search results in search engines.

Tag Cloud
Latest Threads
Forum Stats
7,489 Members
163,545 Posts
46 Users Online

Please welcome our newest member, misteraven!

Affiliates
Go Back AdminFusion » Management » Graphics and Design » [Tutorial] Using Image Slices to Create a web page
Welcome to the AdminFusion. AdminFusion is the ultimate resource for forum administrators and moderators. With exclusive articles, interviews with the experts, free downloadable skins, and the revolutionary post exchange system - PostFusion, AdminFusion is the place to go for all of your forum needs.  By joining AdminFusion, you will become part of a thriving admin community and immediately gain access to all of these resources. Registration is fast, simple and absolutely free so please join us today!
Want more than our forums? Try these: Post Fusion Forum Matrix
Old 07-22-2006, 09:36 PM   #1

Title: Member

Points: 2,358, Level: 13Points: 2,358, Level: 13Points: 2,358, Level: 13
Level up: 14%, 92 Points neededLevel up: 14%, 92 Points neededLevel up: 14%, 92 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Sep 2005

Posts: 126

Skyline_R34 is on a distinguished road
 
 
[Tutorial] Using Image Slices to Create a web page

This tutorial will teach you how to convert your template slices into a fully working page, text and all.

1. Lets start with slicing properly. You want to make as little amounts of slices as possible because you are going to be converting each image, manually, into a background. It doesn't seem as hard as it sound though, so don't worry.
Begin by slicing through the unneeded areas leaving any areas you want to make into links. When clicing up a template, they can sometimes be big and your Swatch window or your layer window might be covering the image. You can tuck the away by minimizing them since you don't really need these while slicing. If you wish, you can keep the History window open, I use this window a lot if I make a mistake. Do it like in this image:

http://tech-fusion.net/slicetut/1.png

This is image is zoomed out, to show you all of the slices. Notice how the slices that don't include links are large and the links are small and precisely on the image. This is how you would slice up a link:

http://tech-fusion.net/slicetut/2.png

2. Now it's time to convert it to an html file and begin our code work. Go to File -> Save for Web. Now choose the image types you want to the right, then click save. Choose a folder to save to. Choose "index.html" as the name, Save As "HTML and Images" Default Settings and All Slices.

3. Depending on hwo you want to do your work, open up your index.html in Dreamweaver or or favorite text editor. If you don't have a text editor, Google "Textpad," I personally use this. If you use a text editor, make note of the file names of the images that are going to be turned into links.

4. Use the Split view in Dreamweaver so you can see which images you are editing on what line. In your editor (Dreamweaver and Text Editor) you will see code like this for each image:
Code:
<td colspan="6" rowspan="2">
			<img src="Tech-Fusion/images/index_02.png" width="587" height="28" alt=""></td>
The variables in the <td> tag will differ depending on your image.

Now comes the time to change the image to a background. We do this by switching the above code with this:
Code:
<td colspan="5" rowspan="2" background="images/index_05.png"></td>
Notice that we now have an extra variable in the <td> tag, "background=""" and we have removed the <img> tag. First you add " background="link/to/image.gif" " without the outside quotes. Then you remove the <img> code. Do this with every image that is not going to be turned into link.

Dreamweaver users will have to refresh after each code change to see the next image,. You will notice the images dissapear, this means they are in the background. Now you can just select the images that are left and they can be turned into links. You write text you just enter your text with any <font> tags over the image where they should be.

Congratulations! You have created your sliced image website!

This tut may not appear anywhere but the following sites:
- Tech-Fusion.net
- Agerage.net
- MPC
- Admin Fusion


TUTORIAL COPYRIGHT 2006, Skyline_R34.
__________________
http://tech-fusion.net
For everything related to computers.
Reply With Quote
Old 07-22-2006, 11:40 PM   #2

Title: Member

Points: 2,446, Level: 13Points: 2,446, Level: 13Points: 2,446, Level: 13
Level up: 14%, 4 Points neededLevel up: 14%, 4 Points neededLevel up: 14%, 4 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Jan 2006

Posts: 144

Location: Southern California

lpxxfaintxx has a spectacular aura aboutlpxxfaintxx has a spectacular aura about
Send a message via AIM to lpxxfaintxx Send a message via MSN to lpxxfaintxx  
 
Shouldn't
Code:
<td colspan="5" rowspan="2" background="images/index_05.png"></td>
be
Code:
<td colspan="5" rowspan="2" background="images/index_02.png"></td>
?

Anyways, GREAT tutorial! I swear to God I've been trying to find a tutorial on EXACTLY this... don't believe me, I'll give you links to all my threads asking.

Thanks a bunch!

P.S., you should add this to Pixel2Life, if you havent already
Reply With Quote
Old 07-23-2006, 12:30 AM   #3

Title: Member

Points: 2,358, Level: 13Points: 2,358, Level: 13Points: 2,358, Level: 13
Level up: 14%, 92 Points neededLevel up: 14%, 92 Points neededLevel up: 14%, 92 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Sep 2005

Posts: 126

Skyline_R34 is on a distinguished road
 
 
Sorry about that, it's a typo. But you get it. Hope it helped . I was tying to do this just yesterday and when a co-admin on another forum showed me i made the tut.
__________________
http://tech-fusion.net
For everything related to computers.
Reply With Quote
Old 07-23-2006, 02:23 AM   #4

n1ck's Avatar

Title: Apprentice

Points: 3,301, Level: 16Points: 3,301, Level: 16Points: 3,301, Level: 16
Level up: 17%, 149 Points neededLevel up: 17%, 149 Points neededLevel up: 17%, 149 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Jul 2006

Posts: 418

Location: Cleveland, Ohio

n1ck has a spectacular aura aboutn1ck has a spectacular aura about
Send a message via AIM to n1ck Send a message via MSN to n1ck  
 
Wow cool. thanks. I've been wanting to make a new layout for a site, but I couldn't figure out how to do this.
__________________
My Websites:
Proxy Network: http://www.libertynetwork.info
Find Your Movie: http://www.movieseeker.us
Reply With Quote
Old 07-23-2006, 03:33 PM   #5

Title: Rookie

Points: 1,964, Level: 12Points: 1,964, Level: 12Points: 1,964, Level: 12
Level up: 13%, 186 Points neededLevel up: 13%, 186 Points neededLevel up: 13%, 186 Points needed
Activity: 0%Activity: 0%Activity: 0%

Join Date: Sep 2005

Posts: 23

Location: Sunny north of Greece

Virtuosofriend is on a distinguished road
 
 
Awesome tutorial mate. Keep them coming
__________________
: [ Admin: AgeRage.net ]
: [ Admin: MPCforum.com ]
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

 
Posting Rules

Similar Threads
Thread Thread Starter Forum Replies Last Post
Google Ranking Explained Ryan Search Engine Optimization 27 01-22-2008 10:42 AM
Selling links for top Google results page, opportunity for forum skin sites/others Matthew Buy and Sell 0 11-24-2006 01:45 AM
What should be the google page rank?!! Danecookie Search Engine Optimization 2 11-18-2005 04:46 AM

AdminFusion

All times are GMT +1. The time now is 05:38 AM. Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.1.0 © 2005-2008 AdminFusion - 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 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