Go Back   Graphic Design Forum > Graphic Design > Web Design

Web Design Web Design type posts here

Reply
 
Thread Tools Display Modes
Old 06-04-2012, 01:47 AM   #31
Meffy
Striped, fluffy, & proud
 
Meffy's Avatar
 
Join Date: Oct 2010
Location: Pony Pasture on the James River
Posts: 1,174
You can always give it a try -- see what the results look like for a comparatively simple project. That could give you a feel for what does and doesn't work well. In my experience very little comes over in good enough shape to be worth keeping, so I just avoid such tools. You might find some value in them though. Nothing works like experimentation.
Meffy is offline   Reply With Quote
Old 06-04-2012, 01:56 AM   #32
<b>
Living the dream
 
<b>'s Avatar
 
Join Date: Jan 2011
Location: Somewhat south of Idaho
Posts: 2,945
Quote:
Originally Posted by aaronjunited
Can you confirm if it's possible to design a site in photoshop or fireworks, slice it all and write...
I agree with what Meffy said.

There's obviously a place for Photoshop (or Fireworks) in web design, just like there's a place for a chainsaw in cutting lumber to build a house. But as Meffy alluded, it's a matter of using the right tool for the job.

When I design websites, I'll often prototype the main pages in Photoshop since it's fast and enables me to rapidly make and see the results of tweaks and changes. An added benefit is that when I'm satisified, I already have most of the bitmapped images (backgrounds, icons, etc.) ready to go. I'll position all the Photoshop elements on different layers — especially those I intend to use as actual graphics in the website. I don't, however, simply slice chunks out of the flattened image for use on the site. Instead, I'll carefully take only those graphics from the mock-up that can't be duplicated with HTML/CSS, then trim, reduce and compress them to their most minimal and efficient form. Then I'll write the HTML/CSS by hand and incorporate those minimal bitmapped graphics as needed.

I always try to build sites that are as minimal and efficient as possible. If there's a way to remove a few bytes, I'll do it. When I'm done, one of my goals is to have as little flab as possible. When you use a term like "slice" up a Photoshop or Fireworks file, I instantly imagine big rectangular chunks of the layout built from chopped up bitmap images, then glued back together with HTML to produce the final piece. There's just no way to build a svelte and efficient site when doing it that way. The code might validate, but if the pages unnecessarily weigh in at 500 hundred kilobytes instead of 50, it's not a well-built site.
__________________
— I feel more like I do now than I did before I got here.
<b> is offline   Reply With Quote
Old 06-04-2012, 02:15 AM   #33
Meffy
Striped, fluffy, & proud
 
Meffy's Avatar
 
Join Date: Oct 2010
Location: Pony Pasture on the James River
Posts: 1,174
Yes! A hundred times this.

I recently did a conversion on the documentation for a graphics library for programmers. The original HTML had been... um, non-compliant with standards. I broke the half-megabyte page (that's just the code alone) into over a hundred pages, cleaned up the code, reformatted it as best I could, with decent indentation and so forth, and made it validate 100% both XHTML and CSS. That took care of the first order of cruft.

However, it's still not as efficient as it could be. There are redundancies, places where two consecutive spans with the same class could be combined into one, that kind of thing. Had I time I'd go back over it and take care of those second-order uglinesses.

I want to stress that the original author, the same programmer who ported this library from C++ to Pascal, did a great job of writing the original document -- from a programmer's point of view. It tells how to use the various functions and such. The HTML code his authoring tool generated didn't do the work justice IMO. I think I've done better, though not well enough to call it perfect.

That said, it's got to be "perfect enough" for now. I have to USE the library I've been re-documenting to write new programs. :-} ("Gotta program! Will write docs later" is why a lot of programming stuff never does get properly documented. I can't escape it either.)
Meffy is offline   Reply With Quote
Old 06-04-2012, 01:18 PM   #34
aaronjunited
Senior Member
 
Join Date: Aug 2011
Posts: 115
Marvelous, you two have really helped me a lot in understand psd to html.

I can't thank you enough for the advice given and the insight into what way it can be done, should be done and what is professional.

Thanks.
aaronjunited is offline   Reply With Quote
Old 06-04-2012, 03:55 PM   #35
<b>
Living the dream
 
<b>'s Avatar
 
Join Date: Jan 2011
Location: Somewhat south of Idaho
Posts: 2,945
Quote:
Originally Posted by Meffy View Post
I recently did a conversion on the documentation for a graphics library for programmers. The original HTML had been... um, non-compliant with standards. I broke the half-megabyte page (that's just the code alone) into...


That reminds me of a job I was hired to do about ten years ago. The client's website totaled about 20,000 static pages (of mostly useless information). There was no rhyme or reason to any of it. Every page looked different and the whole site was a conglomeration of WordPerfect and MS Excel documents that had been auto-saved to HTML, then altered and re-altered innumerable times with MS Frontpage and Adobe PageMill.

I was hired to design a new site in a content management system, then take all the information from these 20,000 pages, sort through it, clean it up, make logical sense of it all then move it into the CMS database.

Aggghhhhh!

It was 20,000 static pages of this kind of auto-generated total nonsense:

HTML Code:
<v:stroke color2="#f60 [7]">
     <o:left v:ext="view" color="black [0]" color2="#f60 [7]" weight="1pt"
joinstyle="miter"/>
     <o:top v:ext="view" color="black [0]" color2="#f60 [7]" weight="1pt"
joinstyle="miter"/>
     <o:right v:ext="view" color="black [0]" color2="#f60 [7]" weight="1pt"
joinstyle="miter"/>
     <o:bottom v:ext="view" color="black [0]" color2="#f60 [7]" weight="1pt"
joinstyle="miter"/>
     <o:column v:ext="view" color="black [0]" color2="#f60 [7]"/>
     <br><BR><BR>
     <i><i><i><i><i><i><strong><strong><i><b><i><i><i><i><i><i>
<i><i><i><i><i><I><I><I><I><I><I>

     <FONT=arial><SIZE=2>
           Thanks<BIG><strong><BIG>!!!!!!</BIG></strong></BIG>
     </SIZE></FONT>

     </I></I></I></I></I></i></i></i></i></i></i></i></i></i></i></i></i>
     </b></i></strong></strong></i></i></i></i></i></i><br>
     <BR><br>

</v:stroke>
__________________
— I feel more like I do now than I did before I got here.
<b> is offline   Reply With Quote
Old 06-04-2012, 04:12 PM   #36
Meffy
Striped, fluffy, & proud
 
Meffy's Avatar
 
Join Date: Oct 2010
Location: Pony Pasture on the James River
Posts: 1,174
*goes crosseyed just at the thought of dealing with such... schtuff*

<i><i><i><i>
<canta y no llores>
<porque cantando se alegran>
<cielito lindo los corazones>
Meffy is offline   Reply With Quote
Old 06-04-2012, 08:33 PM   #37
darkwolf29a
*~*1010011010*~*
 
darkwolf29a's Avatar
 
Join Date: Apr 2009
Location: Green Bay, WI USA
Posts: 1,709
<b>...that would drive me nuts!!!! Cross-eyed?? I'd have gone postal, I'm sure. LOL
__________________
"Go ahead, make your logos in PS. We charge extra money to redraw your logo into vector art so it can be printed on promotional product. Cha CHING! " - CCericola
darkwolf29a is offline   Reply With Quote
Old 06-18-2012, 09:49 AM   #38
Danish01
Banned
 
Join Date: Nov 2011
Posts: 27
Hey guys you have too much knowledge thanks for sharing you experience and knowledge with us....
Danish01 is offline   Reply With Quote
Old 06-27-2012, 05:53 AM   #39
annahussy
Banned
 
Join Date: Jun 2012
Location: india
Posts: 23
That's great information that ever I get as above. I used the photo shop as well. I didn't faced any problems to make the designs according to my choice as well. It will have very creative tools that you can use through different ways.
annahussy is offline   Reply With Quote
Reply

Bookmarks


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

Forum Jump


All times are GMT. The time now is 01:30 AM.




GRAPHICS.COM NEWSLETTER
The weekly Graphics.com newsletter is a great way to stay up to date on what's new on the site and in the world of graphics. Subscribe »

JOB LISTINGS
Featured Listings
Art Director
Hanley Wood
Washington, DC
Designer
Environmental Defense Fund
New York, NY
Presentation Designer
Refinery29
New York, NY
Lead Artist (m/f)
GameDuell
Berlin, Germany

See all other great design jobs on our Job Board

Post a risk-free
job listing for $279


WebMediaBrands
Mediabistro | All Creative World | Inside Network
Jobs | Education | Research | Events | News
Advertise | Terms of Use | Privacy Policy
Copyright 2011 WebMediaBrands Inc. All rights reserved.
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.