Media queries enable the conditional application of CSS styles based on media types, such as screen and print, and the conditions of media features, such as viewport and device height and width. They are part of the W3C CSS3 specification.
2
votes
1answer
12 views
What happens when media queries aren't supported?
Say for example I had this:
@media screen and (min-width: 480px) {
.example {
background-color: red;
}
}
What if I view this page in Internet Explorer 8? Will it still color ...
0
votes
0answers
18 views
Media query not working with all android devices
I really hope this question has not been answered because I could not find it anywhere... I have a site that uses media queries to present different data if it is a mobile or not. I also have a ...
0
votes
2answers
30 views
How to restore removed (.removeAttr()) attributes
So here's my problem, I used .removeAttr() as a work around in disabling inline style, now there's an instance where I need restore the attribute that i had removed. Is it still possible? or what can ...
1
vote
3answers
19 views
PHP: Detect less than IE9 and ignore document and browser mode
/*------------------------------------*\
FIXES (IE ONLY)
\*------------------------------------*/
if( preg_match( '/MSIE ([0-8].[0-9]{1,2})/', $_SERVER['HTTP_USER_AGENT'] ) ) {
...
0
votes
1answer
22 views
jQuery change media query width value
Is it possible with jQuery or anything else to change width value of @media query css while page is running?
So for example if in style.css I've got
@media screen and (min-width: 400px) {
...
0
votes
1answer
24 views
Responsive css grids and various resolutions?
I looked at some css rsponsive grids. I'm currently trying Unsemantic.
I don't really understand how it can manage various resolutions like 400, 768, 1024, while we can only use two kind of classes : ...
0
votes
0answers
10 views
why my media queries need refresh the page to work?
I have these media queries in my webpage:
/* first, media all codes */
@media only screen and (max-width : 480px) {}/* smartPhone */
@media only screen and (min-width : 480px) and (max-width : ...
0
votes
1answer
25 views
Media query behavior with android devices
I am working in the phonegap/android. I had to use an image which was of size 304 * 250.
It is working perfectly in screen size of 320 * 480 and screen size of 720 * 1280.
Now When I wanted to check ...
1
vote
1answer
25 views
media query, changing left position is not working?
I tired many ways, but I can't get this media query to work.
"#Content" just doesn't change left position when I resize the window !
must be a way to make it run correctly !
Here's the code:
...
0
votes
2answers
36 views
Looking for a responsive design solution
I have a twitter bootstrap website and can't figure out how to make the design work without breaking. When the site is wider than about 770px it works well but the two divs on either side of the ...
0
votes
1answer
45 views
How to add a mixin to a chunk of CSS?
I made a huge mistake and I'm looking for some help.
After building a site with CSS, mobile-first responsive, with respond.js as a polyfill, after I tested it in IE compatibility mode during ...
0
votes
0answers
15 views
Outlook 2007/10/13 <style media=“print”> work around
I've encountered something that bugged me while testing my email marketing campaigns.
So here goes:
I use the following code so that images and some other bits won't print when a user prints the ...
0
votes
0answers
22 views
Sticky header not showing with Modernizr.mq
I'm trying to create a sticky header that appears when the screen is scrolled down to a certain point, and only on screens above a certain width.
The code I have is:
$(window).scroll(function() {
...
-3
votes
0answers
14 views
It's creating issue for iPad 4 if i write like this @media only screen and (min-width: 768px) and (max-width: 959px){css code} [closed]
Please check the link
It's creating issue for I phone 4 and I Pad if I write like this
@media only screen and (min-width: 768px) and (max-width: 959px)
Right now for the sake of client i wrote like ...
0
votes
0answers
19 views
Why doesn't media query including orientation property work in iframe?
I have an issue with a media query in an iframe. I figured out that my media queries seem to work as long as I don't specify the orientation.
This media query works just fine:
@media
screen and ...
2
votes
1answer
61 views
How to use media Queries for android devices with android version 2.2.1 and 2.3.5 and their screen size of 240 * 320 and screen size of 480 * 800?
I had to use an image which was of size 304 * 250.
It is working perfectly in screen size of 320 * 480 and screen size of 720 * 1280.
Now When I wanted to check the same in a screen size of 240 * ...
1
vote
1answer
25 views
How to generically test if mediaqueries are supported?
May sound odd, but I'm looking for a simple way to test if any mediaqueries are supported on a browser.
I know there is respondjs, which comes with a window.matchMedia polyfill, but even using it, I ...
0
votes
1answer
23 views
Bourbon neat multiple breakpoints
I know following can be done in bourbon neat:
$mobile: new-breakpoint(max-width: 320px);
$tablet: new-breakpoint(max-width:760px min-width:321px);
$desktop: new-breakpoint(min-width: 761px);
then I ...
0
votes
0answers
30 views
Media queries not working on iPhone's Mail
I'm facing a problem with a newsletter. I have included media queries in it so mobile viewers get something nicer. If I view my newsletter in a browser and resize it, I can see that it works fine, ...
0
votes
1answer
20 views
Media queries not working in smartphone
Dear friends i am having strange issue.
I completed a website and was using screenfly from quirktools to see how it would appeare on tablets and smartphones..... it look fine
When i viewed the site ...
0
votes
0answers
14 views
Change LESS variable if media query conditional is met
I wish to change some LESS variables (for maintaining high-res image pathways) if certain media query conditionals are met throughout my stylesheet, but I can't seem to get it to work.
// Default
...
0
votes
2answers
44 views
How to implement Media Queries for android devices with small screens?
I am working on a Phone gap project. I have implemented a swipe view feature. I have used an image for the background of the text. The image size is around 304 * 250.
It is working perfectly in ...
0
votes
2answers
27 views
Media Queries and CSS Performance
I want to start nesting my media queries in SCSS rules like Chris Coiyer explains here: http://css-tricks.com/naming-media-queries/
E.g.
#breadcrumbs {
display: none;
@include font-size(13);
...
-1
votes
0answers
24 views
need a photo grid layout [closed]
I need a photo grid layout that takes up 100% width and 100% height at all times. I need enough images to fill the page. On resize, the browser can load less or more images accordingly.
Below is a ...
0
votes
0answers
16 views
Does IE10 remove styles on items changed to display none?
I have a parallax on a main page. The parallax is hidden after the first breakpoint, the parallax only shows on the full width desktop.
If the user changes the width down to a tablet width and lower ...
1
vote
1answer
46 views
Detect specific iPhone or iPad model with php
My site sells accessories, spare parts and repairs for iPhone, iPad and iPod and I'd like to give link suggestions for the categories the user might be looking for according to the specific ...
0
votes
1answer
50 views
HMTL5 Website Overflow-x [duplicate]
I have recently put my "alpha" stage website live - http://www.elegantdesigns.comule.com/
I coded it fully with mobile support using media queries. When view in browser and making the width smaller, ...
1
vote
1answer
36 views
media queries not working on firefox
I have been working with this new technology for me (Responsive Design) and i hate the problems which i don't know the answer, i get frustated :/
Here is my code :
http://jsbin.com/ejadej/1
With the ...
0
votes
1answer
19 views
Web page using media queries for different resolutions
I am using media queries in this code to create a web page which would look alike for different resolutions. When I try to change the resolution,footer size and header size reduces ( actually half of ...
0
votes
0answers
12 views
Consolidating double media queries
I'm trying to figure out a way to make the following CSS code DRY with these media queries. If it cant be done in CSS can it be done with less?
I tried something this but it broke
@media all and ...
1
vote
1answer
36 views
How could I make my media queries better?
I'm trying to create a responsive image wall - CSS only. Each image is the background (background-size:cover) of a float:left li.
Example here : http://www.tourdumonde.fr/dev/tiles.php
My goal is ...
0
votes
1answer
36 views
Get CSS style sheet property using Javascript (and media query)
Generally, when I'm not using JQuery, I use the following utility function to get properties from a stylesheet using Javascript. This works nicely to get values from CSS style sheets:
<!DOCTYPE ...
0
votes
0answers
21 views
Chrome rendering CSS glitches
I'm developing a template and am experiencing weird glitches in Google Chrome. Sometimes when refreshing I can briefly see the layout "grow" or "expand" in some places, resulting in weird rendering ...
0
votes
1answer
38 views
Media queries and viewport width - good CSS fix doesn't work on iPad
There is well known problem with media query width, which is not the same as viewport width in some browsers (WebKit browsers change the size of their CSS viewport when scrollbars are visible). I ...
1
vote
1answer
81 views
How to fix this STICKY footer for Android devices in PHONE GAP?
I working in Phone Gap.I have fixed a footer,this works for few devices and does not work for few devices.
HTML CODE for FOOTER
<div id="footer" style="background-image:url(img/bottom_bar.png);" ...
1
vote
1answer
42 views
how to position a background for a big image which is centered at the center of the page?
I have a image with dimension with dimensions 2350*180.
I am working on Phone gap. So,I need to give the code in a generic format so that it is applicable to any device.
Now, I have a background ...
0
votes
3answers
43 views
How to disable media queries support in firefox?
I have a mobile website that is styled with extensive use of CSS3 Media Queries.
I want to do a version for browsers that don't support Media Queries by adding an extra css file for them, that ...
0
votes
1answer
22 views
media query for nexus 10 only?
I'm having trouble specifically targetting the nexus 10 with a media query. It would be simple if I could just do -webkit-min-device-pixel-ratio: 2.0, but I also need it to look good on a Chromebook ...
0
votes
1answer
18 views
css3 media query not working only in specific div
I have a bunch of media queries on my page but for some reason the one I have that targets a div in my footer won't work. Is there something I'm doing wrong with the notation?
@media only screen and ...
0
votes
2answers
70 views
Send responsive email with media queries in Outlook
We have a newsletter that uses media queries to display it in a responsive format for smaller screens. It displays as it should in Outlook, but when the email is forwarded on, it appears that Outlook ...
0
votes
3answers
62 views
How to make an image link to a phone number only on mobile using CSS and HTML?
Instead of just having text for example
If I do
<a href="tel:18001234567">1-800-123-4567</a> then it will be broken on desktops.
If I do (800) 123-4567 then it will display as the number ...
0
votes
1answer
34 views
window.matchMedia not changing even if media queries are present
There's a CSS file with these rules:
@media screen and (orientation:portrait) {
.foo {}
}
@media screen and (orientation:landscape) {
.foo {}
}
And then I've got this script, running on ...
0
votes
1answer
46 views
Get pseudo content with javascript in IE8
I'm trying to get Jeremy Keiths Breakpoint checking to work in IE8. His solution looks like this.
var size = window.getComputedStyle(document.body,':after').getPropertyValue('content');
I'm trying ...
0
votes
3answers
42 views
Media queries and Javascript
I want to change a script when the screen resolution decreases.
I read something about using "screen.width" did not work.
Here is my script code ...
$(function() {
...
0
votes
1answer
35 views
media query for vertical scroll
Is there a way to detect vertical scroll distance with a media query?
It seems that media queries are designed around detecting the medium (shocking right :P) so things like browser height are ...
0
votes
0answers
21 views
Respond.js causes IE8 Crash
http://dev.netcoding.net/lowsglass/about-us/
I've been attempting to get Respond.js to work in IE8 but it's causing a crash before I can get anything out of of the Developer Tools.
I switched from ...
0
votes
1answer
19 views
getting min-width and min device width to work at the same time
This works on my iphone
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
This works in chrome
@media only screen
and (min-width : 320px)
and (max-width : ...
-1
votes
1answer
123 views
Twitter Bootstrap or Zurb Foundation? Which do you prefer? [closed]
I'm currently looking for a UI framework that will be used on a development of a Booking Engine for Hotel Industry.
It must be compatible with mobile devices and desktop, and will be developed in ...
0
votes
2answers
30 views
css media query didn't work
i want to make my blog responsive, but my media queries didn't work well. the css code work in max-width 600px, but it's not working at smaller width.
here's the css code (max-width: 600px);
@media ...
0
votes
1answer
18 views
Abbreviating h1 text in CSS Media Query
I have a <h1> element that has the text "WHERE LIONS ROAM" (the name of my site which you can see here: http://www.wherelionsroam.co.uk). How would I shorten the text to just "WLR" for mobile ...



