I’m sure some if not all of these questions have probably been asked before but I could not see any recent threads about it, and thought it best to not bump any old threads as things may well have changed over time etc.
I’m currently working on implementing a re-design that someone did for me (I’m a programmer, not a designer) and originally I started by making it a fixed layout to match the design I was given.
1)Later on I decided to try to turn it into a flexible/fluid site by using ems instead of px’s. The main issue I came across was with the way ems work. The design has varying font sizes, which means that my em measurements often became ridiculous.
i.e. I define a font size of 10px for my body (a nice number which would be easily dividable). In my header I then need a larger font size for a bar at the top of my page so I set it to be 11px (also tried 1.1 but did same thing). Any sizings within that div are now based on the 11px font size and not the 10px one.
I’d rather be able to define one base size and have all my relative measurements work from that.
Have I done something wrong here or is this really how it’s meant to work?
- If I do indeed stick to a fixed layout what would be the maximum width to stick to to properly support a 1024 wide resolution? Users with less than this are minimal on our site - excluding mobile devices but I think I’d need to create a separate version for them anyhow.