Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #130253
    skynet
    Participant

    hello, i want to change site width on desktop from

    .site {
    	width: 1000px;
    }

    to

    .site {
    	width: 1200px;
    }

    When i see my website on mobile i lose the responsiveness.
    How can i mantain responsiveness on mobile but change width only on desktop?

    #130254
    tikaram
    Keymaster

    @skynet : Please add the following additional css.

    @media screen and (min-width: 1280px) {
    	.site {
    		width:1200px;
    	}
    	#primary {
    		width:790px;
    	}
    }

    Let me know if you have any more issues.

    Regards,
    Tikaram

    #130266
    skynet
    Participant

    Perfect! Just Awesome, work as expected! Thank you Tikaram!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to change Site Width’ is closed to new replies.