Title: Same Height
Last modified: October 8, 2017

---

# Same Height

 *  Resolved [Lens Digital](https://wordpress.org/support/users/lensdigital/)
 * (@lensdigital)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/same-height-2/)
 * Is there any way within the plugin to make all of the Child Pages divs have the
   same height?

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

 *  [Michael Habib](https://wordpress.org/support/users/michaelhabib16/)
 * (@michaelhabib16)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/same-height-2/#post-9661603)
 * Not with the plugin itself. You will need to look into CSS / JS solutions for
   this online.
 *  Plugin Author [caterhamcomputing](https://wordpress.org/support/users/caterhamcomputing/)
 * (@caterhamcomputing)
 * [8 years, 7 months ago](https://wordpress.org/support/topic/same-height-2/#post-9668297)
 * You could try the following JavaScript, which would need to be added to your 
   theme or as a separate plugin:
 *     ```
       jQuery( document ).ready(function() {
       	jQuery(".ccchildpages").each(function (){
       		var maxHeight = 0;
   
       		// Equalise child page containers
       		jQuery(".ccchildpage", this).each(function (){
       			if ( jQuery(this).height() > maxHeight ) {
       				maxHeight = jQuery(this).height();
       			}
       		});
       		jQuery(".ccchildpage", this).height(maxHeight);
   
       	});
   
       });
       ```
   

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

The topic ‘Same Height’ is closed to new replies.

 * ![](https://ps.w.org/cc-child-pages/assets/icon-256x256.png?rev=3451096)
 * [CC Child Pages](https://wordpress.org/plugins/cc-child-pages/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/cc-child-pages/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/cc-child-pages/)
 * [Active Topics](https://wordpress.org/support/plugin/cc-child-pages/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/cc-child-pages/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/cc-child-pages/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [caterhamcomputing](https://wordpress.org/support/users/caterhamcomputing/)
 * Last activity: [8 years, 7 months ago](https://wordpress.org/support/topic/same-height-2/#post-9668297)
 * Status: resolved