Hi @esmi,
Thank you for chiming in here.
It was not my intention to encourage people to edit their parent theme’s stylesheet, i just forgot to add child theme in my reply, sorry for that and for any inconvenience caused.
Hi @renegade05
Thank you for your reply.
hey sorry, I am really knew to all this and I am not too sure what I am doing.
Can you help me out with the css code so I can copy paste?
All I want is when a browser is at 1080px in width, for the site to stop resizing.
It’s a complex process for Twenty Fourteen theme and as you are new to all this so i recommend you to consider hiring a developer from online job market.
Basically what you have to do is in your style.css file of your child theme overwrite the CSS properties defined in CSS media query in your parent theme which is causing to make it responsive.
Alternatively you can just copy paste whole CSS code from style.css file from your parent theme and add & edit it in your child theme style.css file. Don’t import parent theme style.css file in child theme style.css file.
Please note this is not the recommended way to do this as if you update the parent theme then you will not get updated CSS code from style.css file of parent theme.
You have to edit the code in opening and closing braces of following media queries which is located in “11.0 Media Queries” section.
@media screen and (min-width: 1040px) {
@media screen and (min-width: 1008px) {
@media screen and (min-width: 846px) {
@media screen and (min-width: 810px) {
@media screen and (min-width: 783px) {
@media screen and (min-width: 673px) {
@media screen and (min-width: 594px) {
@media screen and (min-width: 401px) {
@media screen and (max-width: 400px) {
Cheers,