Title: ozitsupport's Replies | WordPress.org

---

# ozitsupport

  [  ](https://wordpress.org/support/users/ozitsupport/)

 *   [Profile](https://wordpress.org/support/users/ozitsupport/)
 *   [Topics Started](https://wordpress.org/support/users/ozitsupport/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ozitsupport/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ozitsupport/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ozitsupport/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ozitsupport/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ozitsupport/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Call to undefined function request_filesystem_credentials()](https://wordpress.org/support/topic/call-to-undefined-function-request_filesystem_credentials/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/call-to-undefined-function-request_filesystem_credentials/#post-5562255)
 * Done. Tried to that after, too quickly it seems!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Call to undefined function request_filesystem_credentials()](https://wordpress.org/support/topic/call-to-undefined-function-request_filesystem_credentials/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/call-to-undefined-function-request_filesystem_credentials/#post-5562242)
 * And that has sorted the issue!!!
 * Thanks so much Ross!!!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Call to undefined function request_filesystem_credentials()](https://wordpress.org/support/topic/call-to-undefined-function-request_filesystem_credentials/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/call-to-undefined-function-request_filesystem_credentials/#post-5562222)
 * Hi Ross,
 * Thanks for the speedy reply.
 * This was was even after downloading 4.0.1 from wordpress.org and uploading all
   files via FTP. It hasn’t even started the install of WP yet
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GC Testimonials] Display in 2 columns rather than 1](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [12 years ago](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/page/2/#post-4781570)
 * Hey Chris,
 * Wonderful, thank you for that.
 * I found that it was still displaying 3 columns on iPad, not dropping to 2 (portrait,
   landscape still shows 3 which is fine as the screen width is big enough), so 
   decided to tweak a little to make it work 2 columns in portrait, and also a tweak
   for iPhone.
 *     ```
       /* Responsive */
       @media only screen and (min-width: 769px {
       	/* tablets and desktop */
       	#testimonials_container {
       		-moz-column-count: 3;
       		-moz-column-gap: 0px;
       		-webkit-column-count: 3;
       		-webkit-column-gap: 0px;
       		column-count: 3;
       		column-gap: 0px;
       	}
       }
   
       @media only screen and (max-width: 768px) {
       	/* phones */
       	#testimonials_container {
       		-moz-column-count: 2;
       		-moz-column-gap: 0px;
       		-webkit-column-count: 2;
       		-webkit-column-gap: 0px;
       		column-count: 2;
       		column-gap: 0px;
       	}
       }
   
       @media only screen and (max-width: 640px) and (orientation: portrait) {
       	/* portrait phones */
       	#testimonials_container {
       		-moz-column-count: 1;
       		-moz-column-gap: 0px;
       		-webkit-column-count: 1;
       		-webkit-column-gap: 0px;
       		column-count: 1;
       		column-gap: 0px;
       	}
       }
   
       #testimonials_container .result {
       	display: inline-block;
       }
       ```
   
 * Hope you don’t mind me posting!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GC Testimonials] Display in 2 columns rather than 1](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [12 years ago](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/page/2/#post-4781562)
 * HAHAHAHA!!!
 * Yep, sounds perfect! I would definitely agree with that!
 * Glad there are some more ideas floating around now, should enhance it nicely!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GC Testimonials] Display in 2 columns rather than 1](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [12 years ago](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/#post-4781560)
 * Here is a challenge,
 * Based on the css mod you suggested, my client wanted the testimonials in 3 columns
   all on 1 page (so tweaked it and all working perfectly).
 * However, the responsiveness of the testimonials displayed on iPhones etc, its
   all squished.
 * Challenge is what do I need to tweak to ensure the responsiveness remains?
 * Cheers, link to the testimonials page below so you can see what I mean.
 * [http://jesign.com.au/testimonials/](http://jesign.com.au/testimonials/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GC Testimonials] Display in 2 columns rather than 1](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/)
 *  Thread Starter [ozitsupport](https://wordpress.org/support/users/ozitsupport/)
 * (@ozitsupport)
 * [12 years ago](https://wordpress.org/support/topic/display-in-2-columns-rather-than-1/#post-4781529)
 * Chris,
 * You are a legend!! Works like a charm. Will have a little play and expand the
   width of the testimonials container, but that is just magical!
 * Thanks again, really appreciate it!
 * Rob

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