Hes server isn't up
Its a local server, so his PC probably isn't on.
We have a winner.
Hes server isn't up
Its a local server, so his PC probably isn't on.
I agree with this. I also think that the table needs an external border. It looks a bit weird only having internal borders. It needs a border to frame the table as a whole I think.On the prices page, you've got the width, use it, your table is not filling the width of your body content by some margin, everything looks a bit squashed.
How about making the linhover reverse the current decoration? So black background and white text?What kind of roll over effect, like a background colour change of the <li>?
Good point. Isn't the general idea that only links you click on are meant to be underlined?To be honest I would lose the underlines as well, how many menus do you see on the net where the <li> elements have underlines? answer: not many
Looks good but yeah it needs to cover a larger area. You could try and make it the same height as the white background of the menu and a few pixels wider each side of it so you're highlighting a larger area.What do you think about the roll over effect? Ok, or do I need to increase the background area?
Took me a few seconds to work out what you were on about. Using Opera I didn't see the corners. I had to use Firefox to see them.Maybe the rounded corners could be toned down a little for the page borders etc? thought I must admit I like the extra round corners for the menu as it is.
.rounded-corners {
-moz-border-radius: 20px;
-webkit-border-radius: 20px;
-khtml-border-radius: 20px;
border-radius: 20px;
}
JonRaasch.com said:The first thing you might notice is that we defined the border-radius four times over. This is because current browser implementations aren’t completely refined according to W3C’s recommendations. Since each of the browsers still has its own unique idiosyncrasies, they apply prefixes such as -moz and -webkit.
In our example, -moz-border-radius is for Firefox, -webkit-border-radius is for Chrome/Safari and -khtml-border-radius is for older Konquerer browsers. Finally, the plain, old border-radius is future-proofing for whenever browsers properly support this attribute.