Home › Forums › Theme support › Tripsters Theme on iPhone › Reply To: Tripsters Theme on iPhone
Ok, you can try the following code to move the buttons to the top:
#main .owl-prev {position: absolute; left: -40px;top: 50%;margin-top: -15px;}
#main .owl-next {position: absolute; right: -40px;top: 50%;margin-top: -15px;}
Just add it at the end of your style.css file.
For the height of the section / bg: You can add an id to the section, please add this attribute to the shortcode
id=”responsive_section”
You shortcode should be than [section ... id="responsive_section" ...]
Then add this CSS code at the end of your style.css file:
@media only screen and (max-width: 767px) {
#responsive_section {height:200px;}
}
This will reduce the height of the section to 200 pixels on mobile phones.
Please note: normally custom codes are not included in the free support!