Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #265010

    HI Guys,
    I’m trying to disable certain images on my home page on mobile devices. How do I do this?
    e.g. I would like to disable the truck image on my home page. “avia_image avia_animated_image avia_animate_when_almost_visible left-to-right avia_start_animation”

    Also With the menus on mobiles is there a way to make the menus collapse instead of already expanded?

    http://major.com.au/

    Cheers

    Carl

    #265082

    Hey Carl!

    Try adding this code to the Quick CSS:

    
    @media only screen and (max-width: 767px) {
        .home a.avia_image.avia-builder-el-6.el_before_av_heading.avia-builder-el-first.avia-align-center {
            display: none;
        }
    
    }
    #mobile-advanced ul.sub-menu {
        display: none;
    }

    Cheers!
    Josue

    #266220

    Hi Josue,

    Thank you for your reply. The @media only screen CSS is working well., Is it possible to do the same for the new feed and say only display the images on the first two news feeds and hide the rest?.

    The submenu is sort of what I was after. When I click on a button from the menu to look at the drop down menu it navigates to the button page. Is there a way of having a expand function of the menu?

    Thank for your help.

    Cheers

    Carl

    #266454

    Hey Carl!

    Try this:

    @media only screen and (max-width: 767px) {
        .home .slide-entry img{
            display: none;
        }
        .home .slide-entry-wrap:first-child .slide-entry:nth-child(1) img{
            display: block !important;
        }
    }

    Regarding the other request, the problem is that having a “expand” functionality in the menu would interfere with the normal behavior of links.

    Cheers!
    Josue

    #267816

    HI Josue
    “Regarding the other request, the problem is that having a “expand” functionality in the menu would interfere with the normal behavior of links.”
    Is there any other options regarding the menu on mobile devices?

    Cheers

    Carl

    #268145

    Hey!

    There are some workarounds that could suit your current setup but that would require a heavy modification of the theme files, unfortunately that’s beyond the scope of the support we can offer. If you really need it try contacting a developer.

    Cheers!
    Josue

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