Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #977076

    Hi guys,

    I was able to hide the text on my sliders for mobile devices but I need to then hide the attached buttons. How can I do this on mobile only? Thanks!

    #977197

    Hey hylandgraphics,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    .avia-slideshow-button {
    display: none !important;
    }
    }

    Best regards,
    Mike

    #977557

    Thats seemed to do the trick. Now what I really wan to do is have the content there but it costs the buttons off. Did this just get rid of the button or this there a way to get all the content and the buttons to fit the screen?

    #977770

    Hi,
    Sorry I don’t think I understand, can you provide a mockup of what you would like to see?

    Best regards,
    Mike

    #978487

    Take a look at the small mobile image on the left of the screen. On mobile I would like to have the header, supporting text and buttons still visible but centered on the image like on the desktop version. Right now I can only get the header text as the supporting text and buttons go below the visible line. How can I do that and not have to hide the supporting text and buttons on mobile portrait? Thanks!

    https://snag.gy/RdGIZa.jpg

    #978877

    Hi,
    We can assist with this, right now your caption has a top padding of 170px, I assume this is for desktop, so we will want to add a media query to the css, similar to:

    @media only screen and (min-width: 1024px) { 
    .html_header_transparency #top .avia-builder-el-0 .slideshow_caption{
    padding-top: 170px; 
    }
    }

    this should bring the whole section up, then we will want to un-hide the buttons.
    To give you the correct css I will really need to login and see your css & then adjust it.
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #981684

    Sorry I was away on vacation. If you can help me out so this works on mobile that would be great! Thanks and keep me posted. Login info below

    #981800

    Hi,
    Thanks for the login, I added this css to your Quick CSS:

    @media only screen and (max-width: 767px) { 
    .responsive #top.home .avia-builder-el-0 .slideshow_caption {
        padding-top: 0px!important; 
    }
    .responsive #top.home #wrap_all .container {
        width: 95% !important; 
        max-width: 95% !important; 
    }
    .responsive.av-no-preview #top.home #wrap_all .av-mini-font-size-hidden {
    display: block !important;
    }
    .responsive #top.home .avia-slideshow-button {
        padding: 10px 10px !important; 
        font-size: 10px !important; 
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #982122

    Looks great. Thank you for your help!

    #982305

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘HIDING BUTTONS ON MOBILE’ is closed to new replies.