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 Dots : show on PC-web, hid on SmartPhone-web

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #11574
    Brett
    Member

    Hi,

    On the Home Page, the Slider Dots (links to each slider) show.
    They look good on PC, but on Smart Phone browser their position & size relative to the smaller slider size now puts them over text.

    Is it possible to make them vanish/invisible just on the SmartPhone/Mobile Browser version?

    #11591

    Hi Brett,
    Are you asking to invisible the slider in SmartPhone/Mobile Browser version?

    Thank you!

    #11654
    Brett
    Member

    Hi,

    I want to keep seeing the Sliders on:
    a) PC browser
    b) Smart Phone browser
    c) Tablet browser
    …and currently do. That is good.

    But, I only want to see the slider “dots/buttons” that are visually over the Sliders (at lower/centered area) on:
    a) PC browser
    b) Tablet browser

    I do not want to see the slider “dots/buttons” that are visually over the Sliders (at lower/centered area) on:
    a) Smart Phone browser
    …because they are too big, and are over some text when the Slider image gets scaled down for the Smart Phone.

    Is there any way to accomplish “hiding” the “dots/buttons” when user is on Smart Phone browser ?

    thanks so much 🙂

    #11669
    Brett
    Member

    hi,

    found it.
    file = . / . / wp-content / themes / attitude-pro / style.css
    code = added new code section & changed vertical position within it for Smart Phone only:


    @media
    only screen and (max-width: 767px) {
    #controllers {
    text-align:center;
    line-height:0;
    position: absolute;
    width: 100%;
    bottom: -19px; /* move dots below sliders */
    z-index: 9999;
    }

    #11753

    Hi Brett,

    To hide the dots from the slider on smaller devices Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    @media only screen and (max-width: 767px) {
    	#controllers {
    		display: none;
    	}
    }

    Thank you!

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