>
> (http://www.rknstudio.com/sites/mlp_new/home.html)
> ...
> I have no access to Mac schtuff
> ...
> but I'd like to center by window size
>

Ron,

You might want to change the text color of the menus on hover -- perhaps
to a color other than white so that it stands out better among the gray
background.

To get a screen capture on Mac, try iCapture at
http://www.danvine.com/icapture/ 

Here is how you can do a fixed-width horizontally centered layout that
works in IE and Firefox:

<html>
<head>
<style>
body {
        margin: 0;
        padding: 0;
        text-align: center;
        background-color: #999999;
}
        
#wrap {
        width: 760px;
        margin: 10px auto;
        text-align: left;
        border: 1px solid blue;
        background-color: #CCCCFF;
}
</style>
</head>

<body>
<div id="wrap">
This is the fixed-width horizontally centered layout. 
</div>
</body>
</html>


-artcoder
http://learnwebdesignonline.com



______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to