Title: Reduce Size
Last modified: August 22, 2016

---

# Reduce Size

 *  Resolved [wp-student](https://wordpress.org/support/users/wp-student/)
 * (@wp-student)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/)
 * Probably a dumb question, but is there any way to globally reduce the size of
   the theme? It seems with 1600 min. that the display is not optimized for anyone
   on a laptop. Am I wrong in assuming so?

Viewing 7 replies - 1 through 7 (of 7 total)

 *  Theme Author [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764115)
 * The theme is optimized, resize your browser’s window and you will see it adjusts
   to any window size.
 *  Thread Starter [wp-student](https://wordpress.org/support/users/wp-student/)
 * (@wp-student)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764116)
 * Right, I understand I can do that in my own browser, but my goal is to support
   readers who would not be aware of this.
 * Thanks a lot for your help.
 *  Theme Author [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764117)
 * They don’t need to be aware of that, if you open you website on a laptop or tablet
   the theme will adjust automatically.
 * You can read more on responsive web design [here](http://en.wikipedia.org/wiki/Responsive_web_design).
 *  Thread Starter [wp-student](https://wordpress.org/support/users/wp-student/)
 * (@wp-student)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764119)
 * Maybe I’m making myself clear, or I’m not understanding something. I don’t think
   it’s possible. I’m familiar with responsive designs.
 * Essentially, i would like to change the resolution in the browser so that I can
   get around the 1600 minimum. For example, my laptop is only 1440px wide, so my
   default view of your theme will never see secondary sidebars as you designed 
   the theme, without zooming out in Chrome to allow the content to fit. Does that
   makes sense? I would like to force my users to see it this way. Additionally,
   I prefer the text size when zoomed out as well. I can change the font sizes in
   CSS, but was hoping for some kind of global edit to affect the entire theme and
   content. Perhaps this isn’t possible, but I’ll survive. 😉
 * Thanks.
 *  Theme Author [acosmin](https://wordpress.org/support/users/acosmin/)
 * (@acosmin)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764124)
 * I am sorry but there is a lot of custom work involved in what you are saying 
   and I am not available for hire.
 * You can try [jobs.wordpress.net](http://jobs.wordpress.net).
 * Or you can open `../assets/js/myscripts.js`, find:
 *     ```
       if( $(window).width() >= 1600 ) {
       			$('.mini-sidebar').removeClass('browse-window-opened');
       			$('#browse-more').removeClass('activated');
       			$('.mini-sidebar').removeAttr('style');
       		}
       ```
   
 * change 1600 to the size you want and after that adjust the percentages (for media
   queries) in `style.css`. Example:
 *     ```
       /* Desktop version */
       @media screen and (max-width: 1700px) {
       	/* ------ */
       	.content-wrap { width: 70%; }
       	.sidebar { width: 30%; }
       }
   
       @media screen and (max-width: 1600px) {
       	.mini-sidebar, .mini-sidebar-bg, .wrap-over-1600, .browse-more .banner-160-wrap {
       		/* Elements with Display None */
       		display: none;
       	}
       	.browse-more {
       		/* Elements with Display Block */
       		display: block;
       	}
   
       	/* ------ */
       	.content-wrap { width: 68%; }
       	.sidebar { width: 32%; }
       	.wrap-template-1 { margin: 0; }
       	.posts-wrap { padding: 0 45px 0 0; }
       	.post-template-1 .details .detail, .single-template-1 .details .detail { margin-left: 15px; }
       	.single-template-1 .details .detail:first-child { margin-left: 0; }
       	.single-style-template-1, .about-share, .comments-area, #disqus_thread { padding: 0 45px 0 0; }
       	.slider-wrap { padding: 0 45px 0 0; }
       	.ac-social-buttons-widget ul li { width: 48%; }
       }
       ```
   
 * First remove:
 *     ```
       .mini-sidebar, .mini-sidebar-bg, .wrap-over-1600, .browse-more .banner-160-wrap {
       		/* Elements with Display None */
       		display: none;
       	}
       	.browse-more {
       		/* Elements with Display Block */
       		display: block;
       	}
       ```
   
 * I will not explain more than that because I need to test a lot of other things
   and it takes a lot of time.
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764125)
 * [@acosmin](https://wordpress.org/support/users/acosmin/), that’s fair enough 
   and the community will try to help you out here.
 * [@wp-student](https://wordpress.org/support/users/wp-student/), looking at the
   theme author’s replies it suggests that you need to first start by creating a
   Child Theme: [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 *  Thread Starter [wp-student](https://wordpress.org/support/users/wp-student/)
 * (@wp-student)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764143)
 * Thanks very much!

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Reduce Size’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/justwrite/2.0.3.6/screenshot.png)
 * JustWrite
 * [Support Threads](https://wordpress.org/support/theme/justwrite/)
 * [Active Topics](https://wordpress.org/support/theme/justwrite/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/justwrite/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/justwrite/reviews/)

 * 7 replies
 * 3 participants
 * Last reply from: [wp-student](https://wordpress.org/support/users/wp-student/)
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/reduce-size/#post-5764143)
 * Status: resolved