Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #108868
    nextstep
    Participant

    The visible content on my screen takes up half the screen. This means that text looks very narrow and as many of my pages are very lon, a lot of scrolling is needed

    Is it possible to widen this by 25% or so so.

    Thanks

    #108912
    Pratik
    Participant

    Hi @nextstep,

    Try following CSS code in Appearance=> Customize=> Additional CSS:

    
    @media screen and (min-width: 1025px) {
    	.site {
    		width: 1200px;
    		max-width: 94%;
      	}
    
      	#primary {
    	    width: 67%;
    	}
    
    	#secondary {
    	    width: 30%;
    	}
    }
    

    If you want to increase width even more, try increasing 1200px in line 3.

    Let me know how it goes.

    Regards,
    Pratik

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Make visible content wider.’ is closed to new replies.