• [email protected]

    (@joshualernergmailcom)


    Hi, I am trying to remove the text box that appears on the main page slider which appears to display the post title. I’ve looked at the CSS and tried changing home-slider and .gallery-slider to display: none. It is a temporary fix that reverts when the image changes over to another post. Any suggestions? Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello!

    I think you should be able to hide that with css, regardless of the slider’s work. Could you please post a link to your site so I could check it out for you?

    Greetings,
    Toth Balint BT

    Hello,

    you have to edit the css :

    #home-slider .post-titles, .gallery-slider .post-titles {
        font-family: "Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;
    }

    add :

    display: none;

    you obtain :

    #home-slider .post-titles, .gallery-slider .post-titles {
        display: none;
        font-family: "Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;
    }

    Like this the title will not appear anymore, but the title is a link to the post, no title no link …

    regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Eliminating text box on main page slider?’ is closed to new replies.