Page 1 of 1
Oyster Festival
Posted: Thu Aug 31, 2006 11:24 am
by lennon
Hi,
Here's our latest site.
http://www.galwayoysterfest.com
Hope you like...
andy
Re: Oyster Festival
Posted: Thu Aug 31, 2006 12:37 pm
by Darwin Web Design
I LOVE it !!! I'm a designer so I really appreciate your layout and graphics, menu and the whole site!!

It's easy to get around, the colours are pleasing to the eye, I bet your client is very happy.
Re: Oyster Festival
Posted: Thu Aug 31, 2006 1:11 pm
by amygdela
that is a very sweet design you got there mate! Very well done. As Aussie Gecko says your client must be thrilled!
Re: Oyster Festival
Posted: Thu Aug 31, 2006 1:25 pm
by lennon
Cheers guys. Nice to get some compliments. It one of my best so far I think. Its definitly made the portfolio anyway.
Think the clients pretty happy but havent had any direct contact with them really. Its been via a middleman. So who knows?!
Re: Oyster Festival
Posted: Thu Aug 31, 2006 8:52 pm
by Reggie
Damn ! Beautiful m8 !
Re: Oyster Festival
Posted: Fri Sep 01, 2006 8:48 am
by EMR53
That looks terrific!!! nice fresh and clean site, i love the colors also keep upthe good work
Re: Oyster Festival
Posted: Fri Sep 01, 2006 5:47 pm
by Muzzy
A fantastic job.
Looking at your base site I see you also use CMSMS for that too as well as most of your clients. All excellent work and a good use of of this CMS.
Regards.
Mike.
Re: Oyster Festival
Posted: Sat Sep 02, 2006 7:46 pm
by jovo
I don't like oysters but the website is great!
Re: Oyster Festival
Posted: Wed Sep 06, 2006 2:37 pm
by lennon
Thanks for the kind words guys.
Yeah I always try to use CMSMS for my clients where appropiate. Its a great system for them and me.
Re: Oyster Festival
Posted: Thu Sep 07, 2006 12:12 am
by jcbroad
5*!
Re: Oyster Festival
Posted: Mon Sep 11, 2006 6:28 pm
by freddieb
I don't want to detract from the site at all, which is VERY attractive and well-designed, with excellent info, etc., but there are some problems with it.
In IE6 Windows, when selecting text size "Larger" the whole page loses its layout and it becomes very hard to follow.
In Mozilla, 4 increases in text size produce a similar effect.
Also, the Home page, at least, doesn't validate as XHTML
http://validator.w3.org/check?uri=http% ... Fhome.html
Cheers
Re: Oyster Festival
Posted: Tue Sep 12, 2006 8:48 pm
by neophron
Hi Andy,
10 years ago I had oysters on my plate, and 2 weeks later Hepatitis A. I noticed that you cleaned your URLs (without index.php). How did you changed it (if you are using CMSMS 0.13)? I like your website, also the combination with the flash files.
neophron
Re: Oyster Festival
Posted: Tue Sep 19, 2006 7:16 am
by afri-can
Nice site

Re: Oyster Festival
Posted: Wed Sep 20, 2006 11:45 am
by lennon
Cheers Freedieb. I'll take a look at that. I thought it was validating. As for the text size. Im not sure where to start with that...
To get the clean urls my htaccess is:
Code: Select all
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
# 301 Redirect all requests that don't contain a dot or trailing slash to
# include a trailing slash
RewriteCond %{REQUEST_URI} !/$
RewriteCond %{REQUEST_URI} !\.
RewriteRule ^(.*) %{REQUEST_URI}/ [R=301,L]
# Rewrites urls in the form of /parent/child/
# but only rewrites if the requested URL is not a file or directory
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d [NC]
RewriteRule ^(.+)$ index.php?page=$1 [QSA]
also the config is something like this:
Code: Select all
#------------
#URL Settings
#------------
#Show mod_rewrite URLs in the menu?
$config['assume_mod_rewrite'] = true;
#Extension to use if you're using mod_rewrite for pretty URLs.
$config['page_extension'] = '.html';
#If you don't use mod_rewrite, then would you like to use the built-in
#pretty url mechanism? This will not work with IIS and the {metadata} tag
#should be in all of your templates before enabling.
$config['internal_pretty_urls'] = true;
#If you're using the internal pretty url mechanism or mod_rewrite, would you like to
#show urls in their hierarchy? (ex. http://www.mysite.com/parent/parent/childpage)
$config['use_hierarchy'] = true;
#If using none of the above options, what should we be using for the query string
#variable? (ex. http://www.mysite.com/index.php?page=somecontent)
$config['query_var'] = 'page';
Re: Oyster Festival
Posted: Thu Sep 28, 2006 7:13 pm
by neophron
Thanx for the information,
I installed the new 1.02 version and will try it.
neophron