Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #1017995

    Hey guys,

    I am trying to hide the buttons and text on the full scree slider but have been unsuccessful. I had this CCS from while back but it does not seem to be working now. Can you assist? Thanks!

    @media only screen and (max-width: 768px) {
    .slideshow_caption { padding: 5px; }
    h2.avia-caption-title {
    font-size: 20px;
    }
    #top .avia-slideshow-button { margin-top: 5px; }}
    @media only screen and (max-width: 480px) {
    .slideshow_caption {
    display: none;
    }}

    #1018040

    Hey hylandgraphics,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1018338

    Link Below

    #1018340

    Hi,

    Add this to quick css:

    .av-slideshow-caption{
    display:none!important;
    }

    Best regards,
    Jordan Shannon

    #1018344

    Thank you! Is there way just to get the button only to show up on the left side?

    #1018352

    Also the code you gave me hides it on everything. I just need to hide the text and buttons on mobile only. If possible I would like to just have the button on the righthand side on mobile only and it will display as normal (text and buttons) on all other versions. Thanks.

    #1018436

    Hi,

    Please try this instead of what Jordan sent:

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

    Best regards,
    Rikard

    #1019061

    This worked but the button is still on the left side and I need it on the right. Thanks!

    #1019067

    Hi,

    So you want the button to show up on the right for the desktop? Add this to quick css:

    .avia-slideshow-button {
      float:right!important;
    }

    Best regards,
    Jordan Shannon

    #1019068

    On mobile the button is still on the left side and I need it on the right. Desktop is fine.

    #1019072

    Hi,

    On the tablet or phone? I’m not seeing buttons on the phone at all.

    Best regards,
    Jordan Shannon

    #1019073

    On my phone. I want on the phone only the button to show on the right side and on all other devices to to appear as normal. As of now on my phone I only have a button which is what I want but it is on the left and I need it on the right. Thanks!

    #1019083

    Hi,

    Apologies, but I’m not seeing the area. Please provide a screenshot from your phone so I can see the area you need help with.

    Best regards,
    Jordan Shannon

    #1019126

    Button is on the left and I need it on the right: https://snag.gy/ZueyAO.jpg

    #1019453

    Hi hylandgraphics,

    Try using this css code in Quick CSS:

    @media only screen and (max-width: 767px) {
      #top .avia-slideshow-button {
        float: right !important;
      }
    }

    if it doesn’t work please try to flush out the cache and check again.
    If it still doesn’t work, please don’t remove the code so we can check via a web inspector if the css code is just overriden.

    Best regards,
    Nikko

    #1019524

    I cleared all my cache’s and reloaded the site on my phone via a new browser window and it still seems to be stuck on the last side or the slider? Can you take a look please? Thanks!

    #1019922

    Hi hylandgraphics,

    Best regards,
    Victoria

    #1020347

    I cleared the history on my phone and it is working. Thanks so much for your help as always!

    #1020376

    Hi,

    I’m glad you were able to get this resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Hiding buttons and text on full screen slider’ is closed to new replies.