• Closed
  • Robert Kuan
    Spectator
    June 30, 2016 at 3:37 am #28704

    Hi

    is there a way to hide all the text in Slider Title & Slider description and still have the image Alt text in there for SEO?

    just like to have the images with alt text hidden.

    if i remove all the text and description the SEO is picking up error that the alt text is missing.

    Hope you can help.
    Cheers
    Robert

    Denzel Chia
    Moderator
    Posts: 2656
    June 30, 2016 at 6:28 am #28705

    Hi,

    It’s possible to use CSS to hide from display.
    It will not remove anything from webpage source code, which is what search engine crawlers are indexing.

    Please post your website URL.

    Thank you

    Robert Kuan
    Spectator
    Posts: 3
    June 30, 2016 at 6:49 am #28706

    Hi
    my website is sandstonehub.com.au
    Please teach me how to hide it.
    Cheers
    Robert

    Denzel Chia
    Moderator
    Posts: 2656
    June 30, 2016 at 9:05 am #28710

    Hi,

    Please use the following in Theme Options -> Custom CSS

    .carousel-caption h2, .carousel-caption p {
    display: none !important;
    }

    It hides title and content, does not hide button.

    If you need to hide button too. Please add the following.

    .bootstrap-button {
    display: none;
    }

    Thank you