• There are two semi-translucent bars on the slider images. The top one lists the name of the post the pic is from. Is there a way to delete or disable that bar from showing?

    Help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You need to create a child theme and add the following code to style.css.
    To take title out

    #main-slider .entry-title span,#main-slider .entry-title span:hover {
       display: none;
    }

    To take description out

    #main-slider .entry-content p,#main-slider .entry-content:hover{
       display:none;
    }

    Or you can add the code below to Theme Options – Custom CSS, without to create child theme:

    /* =Slider
    ————————————————————– */

    #main-slider .entry-title {
    display:none;} —> to hide Slide Title

    #main-slider .entry-content {
    display:none;} —> to hide Slide Excerpt

    yes @faxlain is correct , you can add custom css.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Slider Subtitle’ is closed to new replies.