Link to home
Start Free TrialLog in
Avatar of david_php
david_php

asked on

Auto adjust font size in mobile website

Hello,

I m making mobile version of my website. I want to adjust the font size and image in different resolution of mobile device.

Is there any way to do this with help of javascript,html,css or php.

Thanks
Avatar of Bardobrave
Bardobrave
Flag of Spain image

You can make a specific css for mobile devices.

<link href="yourCSSforMobile" rel="Stylesheet" type="text/css" media="handheld" />
<link href="yourStandardCSS" rel="Stylesheet" type="text/css" media="screen" />

The first one will load only on mobile devices.
The second one will load only on desktop/portable screens
Avatar of david_php
david_php

ASKER

I want to adjust the font size in different mobile device based on their resolution.

Suppose i view the mobile site in following blackberry resolutions.
480x360
640 x 480.

Font size should adjust atumatically.

ASKER CERTIFIED SOLUTION
Avatar of Bardobrave
Bardobrave
Flag of Spain image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial