I would like to do a web design that consists in a floating fluid layout consisting on 2 divs over a background image: A main content layout centered and a menu one that is overlapped but relatively positioned over the left part of te content div.
How can I get that so its fluid and seen in any resolution? Which min/max-width do you recommend me?
browser window -> 100%
====================
backgrnd |
------------- |
| | |
|--| | |
|M | content | |
|__| | |
|-----------| |
|__footer___| |
___________________|
body {
margin:0;
padding:80px;
color:yellow;
background: url('image.jpg') no-repeat center center fixed; background-size: cover;
font-size: 65%;
}
Background should be occupying always the screen
.centraldiv {
max-width: 1000px;
min-width: 775px;
width: 90%;
padding: 80px;
}
.menudiv {
position: relative?
width: 100px;
}
Am I going in a good way?
EDIT: No need to actually resolve it, just appointing me if I am assuming good approach (all examples in internet I find for fluid layouts are multicolumn, and the fews which arent, dont use a central panel at all (if you know some resource for this it is enough!). Thanks!