Can Flashlight be easily converted to a responsive design accessible on mobile devices?
Responsive Template
4 posts from 3 voices-
Posted 6 months ago #
-
Hi,
You need to use Media Queries. It will take a lot of modifications.
Regards,
IsmaelPosted 6 months ago # -
Ok Media Queries is required, but what I really need to know is do you forsee and JS problems. For example when you say a lot of work what specifically comes to mind? I am up to the challenge.
Posted 6 months ago # -
Hey Al,
Start by adding this to your custom.css:
/* #Media Queries ================================================== */ /* Smaller than standard 960 (devices and browsers) */ @media only screen and (max-width: 959px) {} /* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 959px) {} /* All Mobile Sizes (devices and browser) */ @media only screen and (max-width: 767px) {} /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */ @media only screen and (min-width: 480px) and (max-width: 767px) {} /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */ @media only screen and (max-width: 479px) {}Use each of the device size queries to adjust whatever elements you want to respond to the users screen size. Responsive design is more about making the users experience better for the screen rather than just a full scale re-do of the site. So its really up to you how far you want to go with it :)
Regards,
Devin
Posted 6 months ago #
Reply
You must log in to post.














