Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #313347
    knudkp
    Participant

    Hi

    We’re running Catch Themes at https://www.fleksjobbernetvaerket.dk/

    If I want to make it *all a bit wider, then how do I do it?

    * = I mean, the content area, (the box with all stuff inside) hehehe … Can I get it a bid wider, and where do I see how the width?

    #313352
    Sakin
    Keymaster

    Hello Knud,

    The width of the site is 1200px width for desktop. So, you can add the following CSS in the “Appearance => Customize => Additional CSS” box to increase the width. In the following CSS, you can increase the 1400px to your desired width.

    @media screen and (min-width: 1280px ) {
    	/* Width for overall site */
    	.site {
    		max-width: 92%;
    		width: 1400px;
    	}
    	/* Width of the slider */
    	#feature-slider .cycle-slideshow {
    		max-width: 100%;
    	}
    	#feature-slider .cycle-slideshow img {
    		width: 100%;
    	}
    	/* Width of the content */
    	.two-columns #main {
    		width: 70%;
    	}
    	/* Width of the sidebar */
    	.two-columns .sidebar-primary {
    		width: 30%;
    	}
    	/* Width of the Footer Widgets */
    	#supplementary.four .widget-area {
      		width: 25%;
    	}
    }

    Regards,
    Sakin

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Make the width bigger’ is closed to new replies.