Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey CeeInTx!

    You can use CSS to accomplish this:

    .hib-text-table-cell .title {
        display: none;
    }
    
    .hib-text-table-cell:hover .title {
        display:block;
    }

    Hope this helps!

    Plugin Author Ignacio Perez

    (@igpremuo)

    Thank you very much! I’m glad you like it.

    You can also use this code to show the title when it is a mobile or tablet device (without on hover effects) and hide it when is a computer.

    @media handheld, only screen and (min-width: 992px) {
        .hib-text-table-cell .title {
             display: none;
        }
    
        .hib-text-table-cell:hover .title {
            display:block;
        }
    }
    Thread Starter CeeInTx

    (@ceeintx)

    Sorry, one more question!

    How can I change the font of the title? I’ve tried putting the css in different places but haven’t gotten right yet.

    I COULD go in and edit what the H3 looks like…

    Is there a better way?

    Thanks!

    Here’s the page I’m working on: https://icsplus.wpengine.com/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Don't show title until hover?’ is closed to new replies.