ozitsupport
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Call to undefined function request_filesystem_credentials()Done. Tried to that after, too quickly it seems!
Forum: Fixing WordPress
In reply to: Call to undefined function request_filesystem_credentials()And that has sorted the issue!!!
Thanks so much Ross!!!
Forum: Fixing WordPress
In reply to: Call to undefined function request_filesystem_credentials()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
In reply to: [GC Testimonials] Display in 2 columns rather than 1Hey 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
In reply to: [GC Testimonials] Display in 2 columns rather than 1HAHAHAHA!!!
Yep, sounds perfect! I would definitely agree with that!
Glad there are some more ideas floating around now, should enhance it nicely!
Forum: Plugins
In reply to: [GC Testimonials] Display in 2 columns rather than 1Here 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.
Forum: Plugins
In reply to: [GC Testimonials] Display in 2 columns rather than 1Chris,
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