summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcss/fellowship_testimonials.css6
-rwxr-xr-xfellowship_testimonials.module4
2 files changed, 6 insertions, 4 deletions
diff --git a/css/fellowship_testimonials.css b/css/fellowship_testimonials.css
index 4f741af..e83caa8 100755
--- a/css/fellowship_testimonials.css
+++ b/css/fellowship_testimonials.css
@@ -32,10 +32,10 @@
padding: 16px;
margin: 10px 0;
}
-video {
+/*video {
max-width: 100%;
height: auto !important;
-}
+}*/
.container-testimonial::after {
content: "";
clear: both;
@@ -45,6 +45,8 @@ video {
.container-testimonial video {
float: left;
margin-right: 20px;
+ width: 500px !important;
+ height: 300px !important;
}
.container-testimonial span {
diff --git a/fellowship_testimonials.module b/fellowship_testimonials.module
index 8b73e9c..081586c 100755
--- a/fellowship_testimonials.module
+++ b/fellowship_testimonials.module
@@ -109,8 +109,8 @@
$query->fields('fellowship_testimonials');
$query->condition('testimonial_type', 'T');
$query->orderBy('year', 'DESC');
- $result = $query->extend('PagerDefault')->limit(3)->execute();
-
+ //$result = $query->extend('PagerDefault')->limit(3)->execute();
+ $result = $query->execute();
$page_content .= "<div id='fellowship_testimonials-wrapper'>";
while($row = $result->fetchObject()) {
$speakerquery = db_select('fellows');