• Hello!
    I really like this theme but I dont like how it looks in large screens.
    Can I do changes in only large screens so it adapts? Ex so the menu text in the sidebar becomes centered.

    Right now the theme just fill out the sidebar color and body color to left and right the larger screen you use.

    thx.

Viewing 1 replies (of 1 total)
  • Hi, you can use CSS media queries to control what CSS gets applied at certain browser widths.

    For example, for any screen size that is larger in width than 900px you would use the following to center the menu items

    @media screen and (min-width: 900px) {
    	.main-navigation ul li {
    		text-align: center;
    	}
    }
Viewing 1 replies (of 1 total)
  • The topic ‘What can I do to make a big screen look better?’ is closed to new replies.