Title: Pull-down answer window size.
Last modified: August 21, 2016

---

# Pull-down answer window size.

 *  [MisterPotatoHead](https://wordpress.org/support/users/misterpotatohead/)
 * (@misterpotatohead)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/)
 * It appears that all answer windows are sized for the largest answer. Is there
   a way to make them automatically size according to their individual content?
 * I’m not a coder so the simpler the better.
 * So far, very simple to use.
 * [http://wordpress.org/extend/plugins/wp-awesome-faq/](http://wordpress.org/extend/plugins/wp-awesome-faq/)

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/pull-down-answer-window-size/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/pull-down-answer-window-size/page/2/?output_format=md)

 *  [jkwalz](https://wordpress.org/support/users/jkwalz/)
 * (@jkwalz)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3925914)
 * I have 15+ questions yet only 10 appear on the FAQ page. Is there a setting somewhere
   that I am missing?
 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926093)
 * Hi jkwalz,
 * There is no limit to show FAQ settings page. It will show all items. It caused
   for the settings>reading>Blog pages show at most. You have set it to 10. That’s
   why you are seeing 10 FAQ items.
 * Thanks
 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926094)
 * Hi MisterPotatoHead,
 * Thanks for the idea. Still there is no option like this. In the next update i
   will keep this feature. Enjoy [http://wordpress.org/extend/plugins/wp-awesome-faq/](http://wordpress.org/extend/plugins/wp-awesome-faq/)
 * Thanks
 *  [WelcomeHomeJoe](https://wordpress.org/support/users/welcomehomejoe/)
 * (@welcomehomejoe)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926290)
 * Hello, Is there a way to change the order of the FAQ questions after they are
   created?
 * Joe
 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926292)
 * Hi WelcomeHomeJoe,
    By this time it’s not possible. I am working on other settings
   also. Many settings are coming soon.
 * [http://wordpress.org/extend/plugins/wp-awesome-faq/](http://wordpress.org/extend/plugins/wp-awesome-faq/)
 * Thanks
 *  [antiden](https://wordpress.org/support/users/donad/)
 * (@donad)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926293)
 * I used the construction in custom jq file
 *     ```
       $(function() {
         $("#accordion div").css("height","auto");
       });
       ```
   
 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926294)
 * Hi Anti Den,
    Thanks for the nice and quick solution. Obviously i will update
   in the next version of this issue. Thanks again.
 *  [archiecruz](https://wordpress.org/support/users/archiecruz/)
 * (@archiecruz)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926295)
 * Hello,
    Where should I edit or put this code
 * $(function() {
    $(“#accordion div”).css(“height”,”auto”); });
 *  [antiden](https://wordpress.org/support/users/donad/)
 * (@donad)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926296)
 * Hi h2cweb.net,
    thx man! =)
 * Hi archiecruz,
    1 variant. You can create custom js file, simple “custom.js” 
   with code
 *     ```
       $(function() {
       $("#accordion div").css("height","auto");
       });
       ```
   
 * and put file in header
 *     ```
       <script src="js/custom.js"></script>
       ```
   
 * 2 variant. Put code in footer, before </body> tag, with this code
 *     ```
       <script>$("#accordion div").css("height","auto");</script>
       ```
   
 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926298)
 * Hi Anti Den,
    I have released the update version of this plugin. And as promised,
   i have added css height issue (from your code).
 * Thanks
 *  [antiden](https://wordpress.org/support/users/donad/)
 * (@donad)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926305)
 * hi h2cweb.net!
 * Thanks man =) I think need use original accordion js, simple use
 *     ```
       $( "#accordion" ).accordion({
             heightStyle: "content"
           });
       ```
   
 * please see and good luck!
 *  [grwiffen](https://wordpress.org/support/users/grwiffen/)
 * (@grwiffen)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926306)
 * JKWlatz,
 * Try this …. it solved the issue for me.
 * I found that simply editing the wp-awesome-faq/index.php file to allow more posts
   per page works. By default it is set to 5. You can find the code ton line 92 
   of the index.php file. Hope this helps!!
 * // Getting FAQs from WordPress Awesome FAQ plugin’s Custom Post Type questions
   
   $args = array( ‘posts_per_page’ => 15, ‘post_type’ => ‘faq’, ‘order’=>”DESC”);
   $query = new WP_Query( $args );
 *  [grwiffen](https://wordpress.org/support/users/grwiffen/)
 * (@grwiffen)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926307)
 * h2cweb.net
 * The latest version does not auto-hieght. I suggest you use the code offered to
   you here.
 *  [joshlevin128](https://wordpress.org/support/users/joshlevin128/)
 * (@joshlevin128)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926309)
 * It currently says that the .js code where the auto height is written is “inactive”
   anyway to activate this? The main portion of the plugin is listed as “active”
   and the FAQ is working properly other than the auto size function.
 *  Plugin Author [Liton Arefin](https://wordpress.org/support/users/litonice13/)
 * (@litonice13)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/#post-3926310)
 * Hi grwiffen,
    You are doing lots for me. I will release latest version. I forgot
   to show all posts in line 92. I will fix this issue and obviously the auto height
   issue will be solved also.
 * Thanks

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/topic/pull-down-answer-window-size/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/pull-down-answer-window-size/page/2/?output_format=md)

The topic ‘Pull-down answer window size.’ is closed to new replies.

 * ![](https://ps.w.org/wp-awesome-faq/assets/icon-256x256.png?rev=2323698)
 * [Master Accordion ( Former WP Awesome FAQ Plugin )](https://wordpress.org/plugins/wp-awesome-faq/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-awesome-faq/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-awesome-faq/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-awesome-faq/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-awesome-faq/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-awesome-faq/reviews/)

## Tags

 * [Sizing](https://wordpress.org/support/topic-tag/sizing/)
 * [window size](https://wordpress.org/support/topic-tag/window-size/)

 * 17 replies
 * 10 participants
 * Last reply from: [AtelierFontaines](https://wordpress.org/support/users/atelierfontaines/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/pull-down-answer-window-size/page/2/#post-3926329)
 * Status: not resolved