[css-d] Hack or conditional comments for small screen aps?

2010-10-31 Thread Nancy
I had several long pages (requested to make them that way) with fixed menus 
on the left that are specific to each page.
During a site redesign, the left menu area was required to be the same for 
all pages and not to include many levels of choices.

So I moved the fixed menus to right.
But now they do not show on cell phones (the new site has fixed widths).
Is there a hack or conditional comment that would allow me to change the 
left positioning of the fixed menu when it is viewed on a cell phone 
browser? It is currently set at 737px, which, I realize, wouldn't display on 
a screen narrower than 800px either.
Otherwise I will just have to put in a lot of return-to-tops and/or repeat 
the menu options throughout the page.


Thank you,
Nancy

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Hack or conditional comments for small screen aps?

2010-10-31 Thread David Laakso

On 10/31/10 5:04 PM, Nancy wrote:
Is there a hack or conditional comment that would allow me to change 
the left positioning of the fixed menu when it is viewed on a cell 
phone browser?


Thank you,
Nancy



You may want to consider using CSS3 Media Queries. t/
/http://www.w3.org/TR/css3-mediaqueries/#media0
Bruce Lawson-- mobile friendly
http://dev.opera.com/articles/view/the-mobile-web-optimization-guide/
Smashing Magazine
http://www.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/
Stuff and Nonsense: CSS3 Media Queries
http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries

Best,
~d

--
:: desktop and mobile ::
http://chelseacreekstudio.com/

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Hack or conditional comments for small screen aps?

2010-10-31 Thread Bob Rosenberg
At 17:45 -0400 on 10/31/2010, David Laakso wrote about Re: [css-d] 
Hack or conditional comments for small screen a:



On 10/31/10 5:04 PM, Nancy wrote:
Is there a hack or conditional comment that would allow me to 
change the left positioning of the fixed menu when it is viewed on 
a cell phone browser?


Thank you,
Nancy



You may want to consider using CSS3 Media Queries. t/
/http://www.w3.org/TR/css3-mediaqueries/#media0
Bruce Lawson-- mobile friendly
http://dev.opera.com/articles/view/the-mobile-web-optimization-guide/
Smashing Magazine
http://www.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/
Stuff and Nonsense: CSS3 Media Queries
http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries

Best,
~d


Which is predicated on the expectation/hope that the cell phone's 
browser supports this level of CSS. A way to get the same result is 
via Server Side Scripting to send a tailored set of CSS. Note that I 
am NOT advocating this method but only pointing it out.

__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/