-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add testimonial section on homepage #3527
Changes from 1 commit
e6f45ca
aa71786
ccd595b
fb31b17
d0bb13c
651ce59
8d4ebc9
1709ba0
b16ddc2
3210de5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -429,8 +429,30 @@ <h3 class="fw-light center">Sponsors</h3> | |
</div> | ||
</div> | ||
</section> | ||
<!-- Subscribe to newsletter --> | ||
<section class="ev-container text-med-black ev-super-light-bg"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey @gautamjajoo Instead of renaming
under the media query for mobile devices There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done |
||
<div class="grad-container text-med-black"> | ||
<div class="row"> | ||
<h3 class="fw-light center">Testimonials</h3> | ||
</div> | ||
<div class="testimonial-container"> | ||
<div class="card ev-card-panel ev-challenge-card z-depth-2 hoverable margin-bottom-cancel"> | ||
<div class="testimonial-body"> | ||
<span class="fs-24">{{ testimonialbody }}</span> | ||
</div> | ||
<div class="testimonial-author fs-20">- {{ testimonialauthor }}</div> | ||
<img src="assets/images/testimonials/arrow.png" (click)="testimonialNavigate()" class="testimonial-arrow-left" /> | ||
<img | ||
src="assets/images/testimonials/arrow.png" | ||
(click)="testimonialNavigate('right')" | ||
class="testimonial-arrow-right" | ||
/> | ||
<img src="assets/images/testimonials/quotes.png" class="testimonial-quotes" /> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- Subscribe to newsletter --> | ||
<section class="ev-container text-med-black"> | ||
<div class="grad-container text-med-black"> | ||
<div class="row"> | ||
<h3 class="fw-light center">Subscribe to our newsletter</h3> | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Css seems a bit distorted for mobile devices. Can you please try making
padding:0px
for.grad-container
just for the testimonial container.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The left and right buttons? Because I had seen the mobile view as well. I will check it once again
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Kajol-Kumari Currently, the mobile view is:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IMO we can use the left and right padding spaces just for mobile devices. It would look much cleaner that way.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Kajol-Kumari Got it. Done the required changes.