-
AuthorPosts
-
May 15, 2014 at 1:47 am #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?
Cheers
Carl
May 15, 2014 at 5:47 am #265082Hey 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!
JosueMay 18, 2014 at 2:13 am #266220Hi 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
May 18, 2014 at 10:13 pm #266454Hey 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!
JosueMay 21, 2014 at 7:43 am #267816HI 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
May 21, 2014 at 7:03 pm #268145Hey!
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 -
AuthorPosts
- You must be logged in to reply to this topic.