Graphic Design Forum and Web Design Forum

Compare Web Hosting


Go Back   Graphic Design Forum and Web Design Forum »General »Graphic Design & Web Design Critique

Notices

Graphic Design & Web Design Critique Get Critique from other designers on your graphic & web designs


Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 27-07-2008, 09:40 PM
tr0y's Avatar
Experienced Member
 
Join Date: Jul 2008
Location: Seattle, Wa
Gender: Male
Posts: 181
Default

Okay, just checked the vatican's website... image maps!! So, I guess that whole Catholic rumor turned out not to be true. You never can tell on the internet, i guess.
____________________________

consider: open, llc - seattle web design | web development | internet marketing
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote

  #12 (permalink)  
Old 27-07-2008, 09:42 PM
Junior Member
 
Join Date: Jul 2008
Location: Columbus, OH
Gender: Male
Posts: 15
Default

I really appreciate your help. This is actually the first forum that I register in. How can you design a layout or template using illustrator? Is it possible.

I will try to redesign the whole site using CSS/HTML.

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #13 (permalink)  
Old 27-07-2008, 09:45 PM
Junior Member
 
Join Date: Jul 2008
Location: Columbus, OH
Gender: Male
Posts: 15
Default

I really appreciate your help guys. i will redesign my site in CSS/HTML. feel free to give me tips or advice on how to design site in CSS "Layout".

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #14 (permalink)  
Old 27-07-2008, 09:57 PM
tr0y's Avatar
Experienced Member
 
Join Date: Jul 2008
Location: Seattle, Wa
Gender: Male
Posts: 181
Default

If you build a design in illustrator, you are still going to have to export it to an image file (png, gif) and then chop it up. I would suggest building a wireframe of the site first with html and css to get your chops up, then you can build the elements in whatever you like and just add some background images to your css.
____________________________

consider: open, llc - seattle web design | web development | internet marketing
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #15 (permalink)  
Old 27-07-2008, 11:36 PM
Junior Member
 
Join Date: Jul 2008
Location: Columbus, OH
Gender: Male
Posts: 15
Default Critique site for me

I was just playing with CSS just now, and I came up with this design, it's not done yet though. Website

Thanks for your help.

Please critique!
____________________________

My Personal Site
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #16 (permalink)  
Old 28-07-2008, 12:07 AM
tr0y's Avatar
Experienced Member
 
Join Date: Jul 2008
Location: Seattle, Wa
Gender: Male
Posts: 181
Default

Nice work. Now, make all the sub titles (h2 - h4) consistent. Remove the inline styles (style="align: center") and place them into css rules. Keep going, post when you have played more.
____________________________

consider: open, llc - seattle web design | web development | internet marketing
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #17 (permalink)  
Old 28-07-2008, 12:42 AM
Junior Member
 
Join Date: Jul 2008
Location: Columbus, OH
Gender: Male
Posts: 15
Default

Your website looks really good. What did you use to make the arrow move?
____________________________

My Personal Site
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #18 (permalink)  
Old 28-07-2008, 12:45 AM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 6,318
Default

Quote:
Originally Posted by paparazi View Post
Your website looks really good. What did you use to make the arrow move?
HTML Code:
<!-- Nav Arrow -->
<script type="text/javascript">

var navArrowSlider = function(navWrap, navElementsArray, activeID, arrowY) {
	var youAreHere = new Fx.Tween($(navWrap), { 
		duration: 1200,
		transition: Fx.Transitions.Elastic.easeOut  
	});

	$$(navElementsArray).each(function(item){  
		item.addEvent('mouseenter', function() { 
			var thisPos = item.getPosition(navWrap).x  + item.getSize().x - 50; 
			youAreHere.cancel();
			youAreHere.start('background-position', thisPos + 'px ' + arrowY + 'px'); 
		});
	});
	
	var currentArrow = function() {
		youAreHere.cancel();
		var activePos = $(activeID).getPosition(navWrap).x  + $(activeID).getSize().x - 50; 
		youAreHere.start('background-position', activePos + 'px ' + arrowY + 'px');      
	};
	
	//correct IE rendering problem (without this, it wont go to the active nav onload)
	var activePos = $(activeID).getPosition(navWrap).x  + $(activeID).getSize().x - 50;  
	$(navWrap).setStyle('background-position', activePos + 'px ' + arrowY + 'px');       
	
	//works to set image to starting position in other browsers
	currentArrow(); 
	
	$(navWrap).addEvent('mouseleave', currentArrow);	
}; 
	
window.addEvent('domready', function() {
	navArrowSlider(
		'nav_wrap', // ID of nav wrap
		'#nav ul li', // Array selector of nav elements 
		'active_nav', // ID of current nav element
		'50px' //  Background position y of background image
	); 	
}); 
</script>
<!--/Nav Arrow -->
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #19 (permalink)  
Old 28-07-2008, 12:48 AM
tr0y's Avatar
Experienced Member
 
Join Date: Jul 2008
Location: Seattle, Wa
Gender: Male
Posts: 181
Default

:D

Thanks Tommy,
Its mootools 1.2, IMHO the best javascript library around.

You can find the full documentation for it here:
Simple Animated Menu for Mootools 1.2 -- consider: open blog | Web Design, Development and Marketing

If you are interested in playing with it, you can get the zip with a css file, a basic html template, the mootools js and the menu js here:
http://www.consideropen.com/download...mated_menu.zip

The menu code is dedicated to the public domain, so you can do whatever you want with it.
____________________________

consider: open, llc - seattle web design | web development | internet marketing
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
  #20 (permalink)  
Old 28-07-2008, 12:52 AM
tommylogic's Avatar
f*ck yeah it validates!!!
 
Join Date: Apr 2007
Location: Virtually Everywhere
Gender: Male
Posts: 6,318
Default

yeah.. I figured it was a MooTools library. Fairly typical animation for them. I prefer moo over jQuery any day
Digg this Post!Add Post to del.icio.usBookmark Post in Technorati Share This Article & VoteReddit! Wong this Post!Stumble this Post!RSS Share on FacebookForum Netvibes PageTwit this!
Reply With Quote
Reply


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 On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Portfolio site critique likethegoddess Graphic Design & Web Design Critique 12 29-05-2008 09:51 PM
Design Portfolio/Personal dustyfantildeath Graphic Design & Web Design Critique 4 26-03-2008 03:46 AM
Portfolio Site Critique - In Progress designfire Graphic Design & Web Design Critique 7 17-09-2007 09:53 PM
Personal Portfolio Redesign - Critiques Wanted bluesage Web Design Forum Showcase 7 13-07-2007 01:32 PM
Personal Portfolio. hideout Web Design Forum Showcase 8 12-04-2007 07:13 PM



The Graphics Forum Web Design Stuff Free Decent Downloads Free Quality Wallpapers Graphics Forum
Free Vista Themes Creativecurio - Design Blog Graphic Design Advertising Graphic Design Advertising
The Top The Best Images Heavenly Glimpses Photography Tech Talk 247 Logo Design - $149 Affordable Stock Vector Illustrations
Free Design Portfolios

Create your own custom 2010 Calendars

Web Hosting - UK Web Hosting services for business or personal website hosting needs.

Dedicated Servers - A full range of Managed Dedicated Server solutions suitable for all your requirements.

Graphic Design Blog | Web Design Forum | Graphic Design and Print Forum | Graphic Design Links | Advertise On This Site

Web Design UK | Design by Miner Skinz.com | Logo Design UK | Art Schools Online | Pressure Seal Printing | Vision.To Design

Colour Print | Graphic Design UK | Logo Design | Photography Blog | Brochure Design UK | Design Forum Links | Logo Design

Graphic Design Schools Online | Integrated Cards | Integrated Labels | Graphic Design | Logo Design | Graphic Design Social Network

Logo Design | Integrated Cards & Labels | Graphic Design Tutorials | Logo Designer | UK Logo Design Studio

Colour Printers, Web Design and Logo Design UK | Business Cards | Accident and Injury Claims Rotherham UK | Logo Design Blog

Funfair Hire, Carousel Hire, Carnival Hire in the UK | Web Designer Rotherham, Yorkshire, UK | Damp Proofing & Plastering, Dartford, Kent

Damp Proofing, Refurbishment & Plastering, London | Wedding Photography London, Wedding Photographer, Kent

Free Dating in Sheffield | Free Dating in Sheffield and Yorkshire Forum | Motorhome Rental and RV Hire Scotland | Vector Art Blog

Free Web Hosting | Custom Logo Design - $149 Only | Affordable Print Design Templates | Small Business Logo Design | Company Logo Design

Logo Design Service | Logo Design Firm | Logo Design Reseller | Custom Logo Design | Letterhead Printing | Flyer Printing | Business Card Printing

All times are GMT. The time now is 08:48 AM.


Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 Estetica Design Forum's Privacy Policy