Mobile Web Help Image sizes

This forum is for all Flare issues related to styles, stylesheets and XML.
Post Reply
peterbrown05
Propeller Head
Posts: 52
Joined: Fri Jun 18, 2010 9:08 am

Mobile Web Help Image sizes

Post by peterbrown05 »

we currently do this:

Code: Select all

img
{
	max-width: 850px;
}
...
@media print
{
	img
	{
		max-width: 16.00cm;
	}
is there any way to do a similar thing for MOBILE img elements so that they have a max width of say 200px so they fit reasonably on a mobile device screen?

eg

Code: Select all

@media mobile
{
	img 
	{
	    etc
or any other suggested ways of working to produce both standard html and mobile html webhelp?

cheers
peteB
NorthEast
Master Propellus Maximus
Posts: 6426
Joined: Mon Mar 05, 2007 8:33 am

Re: Mobile Web Help Image sizes

Post by NorthEast »

The solution you suggested should work ok; i.e. using a separate medium for mobile-specific styles.
jrpacarte
Jr. Propeller Head
Posts: 1
Joined: Sat Apr 16, 2011 6:07 am

Re: Mobile Web Help Image sizes

Post by jrpacarte »

That is exactly I am trying to find. I just am getting started with my first project so need an idea about the image sizes. Anyway, there should be some websites that could let us learn on making mobile web.
Post Reply