Featured content navigation controls
-
Hi, in the mobile version of the olsen theme, the navigation controls of the featured content slider are at the top of it, while in the normal version are in the middle of the slider’s height. I’ve tried to do the same thing for the mobile version with this code:
.flex-direction-nav a { top: 50%; }but it doesn’t work perfectly.
The blog I need help with is: (visible only to logged in users)
-
Hi, I would suggest using a Media Query so that you can keep from affecting the slider nav controls on desktop and such. Replace what you have with this and you can adjust the 40% value as desired.
@media screen and (max-width: 767px) { .flex-direction-nav a { top:40%; } }
- The topic ‘Featured content navigation controls’ is closed to new replies.