Maybe use a marquee element with just images?
Remco van Dun
Posts
-
Carousel - Always scrolling -
scroll effectHi,
you mean just a fixed image?
That would be
.fixed {
position:fixed;
}and give that image in your gridder a rightclick > class called fixed
-
Carousel click on desktop but slide on mobileOk!
Thanks for getting back to me, I'll leave it for now or check again after some updates. -
Random intro imageWith some help of a friend I've found a (hacky) way.
Although it requires a fully transparent .png to be set in your customize > intro
Because without a file, it won't trigger the intro feature? And a normal image will of course cover up your random set intro images...in Custom HTML at bottom:
<script> var images = [ 'http://yourwebsite.com/image1.jpg', 'http://yourwebsite.com/image2.jpg', 'http://yourwebsite.com/image3.jpg' ]; var randomImage = Math.floor(Math.random() * images.length) window.laytheme.on("newpageshown", function(layoutObj, type, obj){ if (obj.id == 1) { var mediaWrap = jQuery(".mediawrap"); mediaWrap.css("background-image", "url('" + images[randomImage] +"')"); mediaWrap.css("background-size", "cover"); } }); </script>
-
Thumbnail Image aspect RatioWould love this, very useful :)
-
Left/Right Padding on Mobile version for Horizontal Lines in gridThanks again for your help, that seems to have done the trick!
-
No content after migrationTo anyone reading and clarify a bit more:
When you drop all the files from your phpmyadmin and replace them with the new .sql, realise the password you now need to enter is the password you used on your earlier website build and not a password you may have set for the new hosting location.