Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi @redstarbootes

    One way could be using CSS to hide that. Using display: none; on the element to hide it.

    You can find the element by using your browser’s developer tools.

    Adding this:

    
    .post-date.entry-date {
        display: none !important;
    }
    

    to the custom css pane will remove the text, but the black box will still be there.

    if you would like to remove it too you can add this:

    
    .loops-wrapper.list-post.gallery .post-image + .post-content, .loops-wrapper.grid4.gallery .post-image + .post-content, .loops-wrapper.grid3.gallery .post-image + .post-content, .loops-wrapper.grid2.gallery .post-image + .post-content {
    margin-top:0 !important;
    }
    

    It will drop the black box down but still show the title when the image is hovered.

    ??

    Thread Starter redstarbootes

    (@redstarbootes)

    Hi,

    Thank you for your comment. We have tried to adapt it according your advise, but it didn’t work. Can you be more specific about how to find the element or the css-pane?

    Kind regards.

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