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.
0
votes
0answers
7 views
Best widths for apply media queries for a responsive website satisfying portrait and landscape page orientations on different devices
What are the best widths for apply media queries for a responsive website satisfying portrait and landscape page orientations on different devices?
Begin from Mobile First Approach...
There are lot ...
1
vote
1answer
19 views
Animate between media query breakpoint
Whats the best way to animate between css media queries?
Would it be CSS3 Transitions or jquery?
CSS
@media handheld, only screen and (max-width: 1024px) {
h1 {
font-size: 30px;
}
}
@media ...
0
votes
0answers
20 views
Media query not working with Landscape orientation
For my CSS media queries I've set it up mobile first which deals with all the overall styling.
I then have:
@media only screen and (min-width : 790px) {
}
@media only screen and (min-width : 990px) ...
0
votes
3answers
28 views
Width doesn't respond according to the media query
I was experimenting with media queries to see the effects.
So I tried using min-width(480px) query to change the width of a div from 100% to 520px when the window was maximised but the width of the ...
0
votes
0answers
23 views
Media Query doesn't change CSS when Maximizing Browser and Switching Tabs
Here is a bit of CSS that has a simple media query.
http://codepen.io/anon/pen/nuxaw
When I shrink the page so that the view port is less than 320, the box turns green. Now if I follow these steps, ...
0
votes
0answers
4 views
Mediaqueries in chrome 22.0.1229.79 m
For a school project we have to make a site with mediaqueries,
but the school still uses a 22.0.1229.79m chrome browser
which does not apply my mediaqueries.
the css validates and works in the ...
1
vote
1answer
28 views
CSS Media Query min-width not working correctly
I have a html like:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
...
0
votes
0answers
13 views
Is there a bundling solution that respects media queries?
Does the Client Dependency Framework support media queries in the link tag? I'm looking for a solution that will minify and bundle the sass generated css appropriate for the device viewing the page.
1
vote
2answers
16 views
CSS3: Will mobile devices load background images when inside media queries?
If I have the following:
div {background: #000}
@media (min-width: 1000px) {
div {background: url(myimage.jpg)}
}
Will a 320px wide smartphone, for example, still download that background ...
0
votes
1answer
29 views
Reorder div table-cells using media queries
I have a div table with two cells. Now I want to show the second cell at the top and the first cell at the bottom of page, when my page is displayed on a smartphone:
<div class="table">
...
0
votes
0answers
36 views
media queries GLITCH in IE
I am using media queries to justify a list of boxes.
Basically, I set up a media query for each #columns states, where I then use calc() to work out the margin-right on each of the elements (except ...
0
votes
0answers
31 views
Trouble using media queries for email design in Hotmail(Outlook)
I’m trying to design an email template that is also optimised for iPhone and later for Android if possible.
I’ve created a different header with the class “mobileheader” for the header and a ...
0
votes
2answers
41 views
Max-Width vs. Min-Width
Most of the tutorials I'm reading on using Media Queries are demonstrating the use of min-width, but I'm rarely seeing people using max-width.
Is this some sort of design trend, or pattern, why ...
0
votes
0answers
12 views
Media Queries not working in Chrome, works in Firefox
I have a whole range of stylesheets that are specific to many different resolutions.
I link to them using references in the header, such as:
<link rel='stylesheet' media="(min-width: 1024px) and ...
0
votes
1answer
29 views
skip downloading of images on small screens
On pages like this one I show a list of artists that will be appearing at a festival. On small screen sizes (e.g. cell phone) the artist images are hidden with a media query rule:
@media (max-width: ...
-2
votes
2answers
67 views
Media Query VS Twitter Bootstrap
I use media query to develop responsive websites but one of my friend told twitter-bootstrap is better and I must learn it. Can you kindly give me some light, whether I should learn twitter-bootstrap ...
0
votes
0answers
39 views
Print function not working properly in firefox
In this webpage I added a print option. It works perfect in Google Chrome but not in Firefox and IE.
CSS(only Printing):
@media print
{
.printable{
display: inline;
}
.not-printable {
...
1
vote
0answers
21 views
How can I manage classes like “row” and “span(X)” of Twitter Bootstrap to work on @media print?
I need to print web pages in my website and I'm wondering how to make row and spanX classes of Bootstrap work so I can easily manage the content of the printed page.
For example:
<div ...
0
votes
0answers
7 views
@media only screen and (max-width: 545px) property not working
This is my site.. http://debt-trust.co.uk/home my problem is that my media screen css not working at the max width 545px... bu it will effect if the max width of browser is in @490px is there any who ...
0
votes
1answer
11 views
Less global variable and mixin usage in media-queries
I've got a problem when using global varibale in a mixin which is used in @media-query.
Point is in different @media-query the variable is rewrited. So I would like the mixin to use updated value but ...
0
votes
0answers
8 views
Media Queries Linked but Not Effective
I have a bit of a noob question, I am sorry to say. I am trying to get an existing website to obey a seperate style sheet when displaying on smart phones.
This is what I have:
<meta ...
0
votes
1answer
64 views
Overriding jQuery styling with CSS for @media
I have some jQuery script that positions a sidebar menu to scroll down with the screen:
<head>
<script type="text/javascript">
jQuery(function($) {
function fixDiv() {
...
0
votes
0answers
23 views
Printing PDF - How to add margin top and bottom on every page?
I'm using phantomjs to take a screen capture of a "Proposal" that my application creates. This is all going great, it exports to PDF fine.
When I print from PDF, I need to add margin top and margin ...
1
vote
2answers
41 views
Media Query Logic
As a very simple approach to "responsive design", I have two version of CSS for a website I'm working on:
a regular (non-mobile) version that should display on any devices
with the screen wider ...
1
vote
1answer
30 views
Media queries for landscape printing?
I've got some styles specifically for print, which are being applied correctly with a print media query. The thing is, my layout breaks a bit if you switch to landscape printing, and I'd like to tweak ...
0
votes
0answers
19 views
JQueryMobile panel - how to always show on wide pages
I have a panel and am trying to always show the panel when the window is wide. I don't need to have a close button at all - just always show it for wider windows.
jQuery Mobile Responsive Panel ...
0
votes
1answer
25 views
Shrink/pin navigation bar with header image using media query
I've just started experimenting with media queries and I seem to have reached a stumbling block with what I'm trying to achieve.
I have a simple header/banner with a navigation bar directly ...
0
votes
1answer
36 views
How to express “max-device-width” and "min-device-width: in JavaScript?
If I'm understanding this correctly, screen.width is the JavaScript analogue of
device-width
in a CSS media query.
What would be correct JavaScript for max-device-width and min-device-width?
0
votes
4answers
33 views
divs Display property change via CSS media query
trying to set different layout using media queries
i have truble with defining divs layout according to the screen width
this is the fiddle result
and
the fiddle test project i am using
the ...
0
votes
1answer
36 views
css in portrait mode and land mode with @media
I have the css below. What I want is kind of fluid / liquid (for lack of right terminology) css. I am developing for mobile and when I change the modes
from portrait view to land view, I want it to ...
0
votes
0answers
14 views
Bootstrap:Does mediaquries work differently for Firefox, opera and IE9?
When the media-query is set for a max-width of 767px, chrome, safari and IE10 seem to obey the rule but the changes are applied at 750px for firefox, opera and IE9. Has anybody else experienced the ...
1
vote
1answer
24 views
stack controls on mobile view
Viewing from a desktop my label and two textbox controls are aligned horizontally. However when the user views the site on mobile I would like the textboxes to stack on top of each other. I am using a ...
0
votes
1answer
24 views
How can I reset a function implemented with a jquery media query
I have implemented a function on resizing browser window below 1024, it works fine when reducing the size of the browser but if you enlarge the browser window back to over 1024 the newly introduced ...
0
votes
0answers
44 views
Wondering on how to serve different image backgrounds with media queries (especially for retina displays)
I'm doing some css code to a website that uses a full cover background and I want to serve it with media queries to a several devices with different resolutions.
I've already figured out how to do ...
0
votes
3answers
33 views
How to Mock Media Query in CSS?
Because the browser width of a mobile application is so small, it's nearly impossible to read the Developer Tools (with Chrome). For debugging purposes, this is the least practical application for ...
0
votes
3answers
47 views
Auto div height across columns in responsive grid
I have added a JSfiddle for a responsive grid I am making: http://jsfiddle.net/dankellaway/FUSfs/1/
Each column half has varying amount of text. I want the columns of both divs to have the same ...
0
votes
3answers
70 views
Media query for high resolution mobile 1080px (Xperia Z etc)
I am trying to get to grips with media queries for different devices. I have tried my new Sony Xperia Z mobile and displays in full scale site format due to the high resolution. How do I add a media ...
0
votes
0answers
16 views
MatchMedia function works locally in my browser but when it's live it doesn't, why?
I'm completely stumped on this one. I am trying to make my website responsive and I am using MatchMedia to detect which function to call. One is a scroll function that is suppose to fire on desktops ...
0
votes
1answer
31 views
Why does my flex-box elements “float” next to each other when I've set its elements to stack on top of each other (block)?
I have a set of elements that I want to switch the displaying order, when the page is a specific width (320px). They do change order, but I cannot figure out why the elements are "floating", rather ...
0
votes
1answer
35 views
How do I use jQuery to fire different functions while using @media handheld?
I am trying to make my website responsive. My website is essentially all one page and I use a simple jQuery scroll function to navigate to different sections. It works fine for desktop or laptop ...
0
votes
0answers
47 views
Making Wordpress Image Gallery Reloaded Plugin Responsive
I have a WordPress website that utilizes the Image Gallery Reloaded Wordpress plugin, and I am trying to make it so the gallery responds to media queries. I am able to change some of the containing ...
0
votes
0answers
22 views
Jquery scroll to appear mobile view/media queries
Im using the below jquery function to make items appear one after the other when scrolling on a website (http://pitchandtoss.co.uk/ourstory.html) it works great however when viewed on a mobile it ...
1
vote
2answers
47 views
Testing retina images with css and @media
I'm wondering how to test some retina images css on a regular browser? I also tried my previous code not the code below and wondered if it was working?
It's hard to tell if the correct image is load ...
0
votes
1answer
36 views
media Queries conflict
I am trying to make my site responsive on 2 devices
Samsung tab (600 x 1024)
iPad (768 x 1024)
using below media queries
@media only screen and (min-device-width : 600px) and (max-device-width : ...
0
votes
1answer
135 views
Separate CSS Templates for Phonegap Mobile Application
I am building a Phonegap application with two layouts: one for 'handhelds' and one for 'tablets.' I want devices larger than 6 inches to display the tablet layout and smaller devices to use the ...
0
votes
1answer
24 views
Media Queries to keep menu and sidebar from merging with header/body
This is the website, and more specifically, the page.
I'm currently working on a responsive theme, which has media queries, but something about the CSS modifications I've made, are preventing the ...
4
votes
4answers
170 views
Inconsistent font sizes on smart phone
I'm tweaking a web page so that it looks good on smart phones. I've declared a @media section in the CSS file so I can specify the font sizes for this page. Here's that media section:
@media screen ...
5
votes
1answer
132 views
LESS, Media Queries, and Performance
I recently got started with LessCSS, and I've been having quite a bit of success in regards to how clean and readable my CSS has become. However, I don't think I'm using Less to its fullest ...
1
vote
4answers
91 views
HTML 5 - HTML not seeing CSS in IE7/IE8?
I have created a website using HTML 5 with resolution tags for a wide and medium layout. When testing my website I found that it works in IE9, chrome, firefox, safari but not IE8 and older. The CSS ...
1
vote
1answer
43 views
Media queries on retina enabled devices
Javascript tells me that my Galaxy S3 has a screen resolution of 720x1280
But the document is reported as 360x567.
Is it possible to get the document to more accurately reflect the screen resolution? ...



