Questions tagged as 'media-queries'

0
answers

Media Queries for Menu

I'm developing a page that has a menu that should display different behaviors according to the dimensions of the screen. I'll try to display this through some images. In the initial menu state (and with a screen dimension whose width is great...
asked by 18.09.2016 / 02:05
0
answers

Media Queries cluttering CSS

I'm making a website that has to be responsive first I made desktop first I mounted the whole css normally, so as soon as I finished I started to mount the Media queries for a < in> tablet , I had already had a problem with that part, but I o...
asked by 23.04.2015 / 13:25
1
answer

Resolution of 176px not compatible with Media Queries

I'm using these examples of media queries below, but when testing the resolution in 176-pixel cell phones has no effect, what are the right properties for this? @media screen and (min-width:320px) { } @media screen and (min-width:480px) { } @m...
asked by 20.10.2014 / 20:48
2
answers

Media Queries for Java Script - What is the error in this syntax?

This is the first time I try to apply a media queries rule in java script, and since I am a beginner, I believe something in this syntax is wrong, since the only function that is working is the second one (visible: 3) and in all viewports....
asked by 19.04.2016 / 16:39
1
answer

Why media queries work like this?

I was creating a responsive menu, and u noticed that if I did not put the media queries from the smallest to the largest it does not work correctly. @media only screen and (min-width:560px) { .menu li { width: 132px; height...
asked by 26.07.2017 / 17:23
2
answers

responsive content with fixed size sidebar

Is it possible to make a layout with flexible width content and a fixed size sidebar? Example <body> <header></header> <article></article> <aside></aside> </body> I...
asked by 01.01.2016 / 22:20
2
answers

Media queries do not work

I made these half queries for Desktop, follow the code below: @media screen and (min-width: 1024px) , screen and (min-height: 600px){ #menu ul { left: 26%; } .nomes{ margin-top: 200px; } .botao-circulo{...
asked by 20.04.2015 / 18:58
1
answer

How to use Media Queries for responsive sites based on device dimensions?

I confess that webdesign is not my strong, because I need to get some crucial questions about responsive sites. I understand that to define formatting for several devices uses the Media Queries. For example: I created this media for testing:...
asked by 31.08.2017 / 22:10
1
answer

Image cracking (HTML, CSS, responsiveness)

Good morning, My problem is this: I'musingPrestaShop.Ineedthoseimagesintheprinttobeunderneatheachother,whentheresolutiondecreasesorwhenitisaccessedfromamobiledevice,sothattheybecomeunreadable.Itwouldjustleavethemonebelowtheother,Idonotknowif...
asked by 13.03.2017 / 13:56
1
answer

How to adapt this code to different screens

I have a problem using a vertical slider , the Swiper Slider I'm using the < in> MouseWheel control . My problem is this, since it's a vertical slider , I need to set a size for height , so I can not make it responsive. Example:...
asked by 22.04.2016 / 21:09