Forum Moderators: not2easy
Putting in the all singing and dancing content which can create visitor confidence can be impossible if it has to be eventually scaled for a two inch screen, or even less.
I am looking into dynamic content serving depending on user agent
I think you need to serve content based on screen size not user agent.
Some badly configured systems send me to mobile (small screen smartphone) when i'm on a 10-inch tablet. Worse still, often, it's a mobile site with cut down content. There really is no need for that.
I am assuming you are not familiar with @media, so if you are referring to a page background image, you can call different images based on
@media screen and (max-width: 479px) {
APPROPRIATE CSS HERE
}
If a given site has multiple versions (rather than being, say, RWD from 2400px width and over all the way down to 320px width) it shouldn't really be the server deciding which version to display - that decision is for the user.