badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Slider featured text not showing on mobile

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #25141
    tvkb
    Participant

    Hi
    Thank you for a great template. Easy to Work with for a first time WP user. Everything looks as wanted on computer, but the featured text in the slider is not showing when on mobile. I have tried the below which I found in here. What to do?

    Thank you in advance
    Thomas


    @media
    only screen and (max-width: 767px) {
    .featured-text {
    font-size: 10px;
    line-height: 13px;
    }

    .featured-text .featured-title {
    font-size: 11px;
    line-height: 14px;
    }
    }

    #25157

    Hi Thomas,

    Yes we have made the slider content off to display in mobile display. Because too many text will voilate the design. We have designed our theme this way. If you want to display text in your tablet then please add this below custom css
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save

    @media only screen and (max-width: 767px) {
        .featured-text {
           display: block;
        }
    }

    Hope this may help you
    Thank you!

    #25160
    tvkb
    Participant

    Thank you for a quick respons.
    OK that makes sense. But is there a way just to show the title in the slider and the not show the featured-text?

    /Thomas

    #25223

    @tvkb

    Ok then use the below CSS code to off the featured text only.

    @media only screen and (max-width: 767px) {
    .featured-text {
           display: block;
        }
    .featured-text .featured-content {
        display: none;
        }
    }
    #25230
    tvkb
    Participant

    perfect. Thank you very much

    #25286

    That’s great tvkb

    Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.