BuddyBoss Home – Web Support Forums Themes BuddyBoss theme Content Slider "Learn More" button Reply To: Content Slider "Learn More" button

#30992
@straniero

The Learn More button on the image slider disappears on mobile devices.

This is how to make it appear (thanks to @tjchester) (just put the below code into your child CSS):

#fwslider .readmore{display:block !important;}

However, that piece of code makes the button appear, but the button is a bit big for some screen like the iPhone. Below is how to style it.

#fwslider .readmore{display:block !important;}

@media screen and (max-width: 720px) {
  #fwslider .readmore a{
    font-size: 14px;
  }
}

Note: This is how I did it because iPhone screen were cutting off the button. This little piece of code styles the button for iPhones and also works for larger (Android) screens too.

Note: Would have added this to the other thread for folks to use, but it was locked.