0
Under review
None of the possible ways has worked for us.
We can't fix the slider not to be wider that 100% of the mobiles' screen.
jacqueshermes.com
.indrevdiv {
text-align: center;
height: 300px;
}
@media screen and (min-width: 800px) {
// this css will only be used when the screen size is min 800px
}
Customer support service by UserEcho
Try adding this to the custom CSS for the review template.
@media screen and (min-width: 800px) {
// this css will only be used when the screen size is min 800px
.wprs_unslider {
margin-left: 25px;
margin-right: 25px;
}
}
Nope it still expands our width on site
Sorry, it should be this...
@media only screen and (max-width: 800px) {
.wprs_unslider {
margin-left: 25px;
margin-right: 25px;
}
}
Thanks!
Can we center align the text inside the review??
Looks like you already got it center-aligned. Let me know if there is anything else.