Support Forums for LiveMesh Themes & Plugins › Forums › Appdev Theme Support › Adjust top margin of revolution slider for mobile resolution › Reply To: Adjust top margin of revolution slider for mobile resolution
November 20, 2013 at 12:53 pm
#2909
Moderator
The following Custom CSS inserted into Custom CSS tab in options panel will do –
.features-list-alternate .rev_slider_wrapper { margin-top: -350px !important; }
@media only screen and (max-width: 767px) {
.features-list-alternate .rev_slider_wrapper {
margin-top: 0 !important;
}
}