opinion?

Looks nice, but why not use an external stylesheet instead of all those duplicate styles on each tag?


<p align="justify"><font color="#FFFFFF" size="2" face="Verdana, Arial, Helvetica, sans-serif"> Darren lee and Cristy Kettering opened........ </font></p>

would be

--CSS--
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: small;
color: #fff;
text-align: justify;
}

----

<p>Darren lee and Cristy Kettering opened........
 
Looks nice, but I hope someone is planning to edit the text.

Be nice to decide on how Cristy spells her name. :D
 
Can anyone suggest a good web hosting company with good prices, and also tell me how to add a web site to search engines. Thank you.
 
benp said:
How can I make it so that the background image does not repeat itself?

Use no-repeat on the background rule for the CSS. I prefer the shorthand method, but the long way could also work. Should look something like what's below for the shorthand method.

Code:
body {
     background: #fff url("images/imagename.jpg") [color=red]no-repeat[/color] [color=blue]top[/color] [color=green]left[/color];
     }

Valid options for the different colors:
- no-repeat, repeat, repeat-y, repeat-x, fixed
- center, top, bottom
- center, left, right


benp said:
Can anyone suggest a good web hosting company with good prices, and also tell me how to add a web site to search engines. Thank you.

I mainly use XRackHosting (http://www.xrackhosting.com). All OS X based on XServes or G5s. $9.95/mo if you pay by the year for their basic plan. For non-critical sites I sometimes use Pair Networks (http://www.pair.com/), which are on Celeron/P4 based servers running BSD. They have some cheaper plans and also some mid-range ones with a good amount of stuff included.
 
benp said:
How can I make it so that the background image does not repeat itself?

Sorry, I couldn't get the link to work. Anyway, to stop the background image from repeating itself CSS is the only way I know of doing this. Follow mdnky's instructions and you won't go wrong.

Ian
 
Looks like you moved it:
http://www.greenmedia.mav-hosting.com/theblueclaw/

The page flashes white in between pages...

You should make the body background color match the main page color to avoid this.

You should do some sort of rollover "you are here" thing on the menus.

The menu page is very hard to read... You need to have a mix of fonts/sizes to seperate out the section headers, the items, and the prices. Consider having sepeate pages for the Appetizers, Entrees, and deserts. (Skip the beverages unless you are going to show a wine list)

Change "News" to "Reviews" (or "What People Are Saying")... News sounds like it is going to be a page of press releases.

You need to add a page with the address and directions... with info about parking, valet, etc...

Contact Us does not work... Does that page have reservation info?
 
Oh... and pictures of the dining room are always good.

Better if its a picture with smiling happy people in it vs. an empty room...

And if you have views of something, show those too.
 
Back
Top