Maybe use a marquee element with just images?
Best posts made by Remco van Dun
-
RE: Carousel - Always scrolling
-
RE: scroll effect
Hi,
you mean just a fixed image?
That would be
.fixed {
position:fixed;
}and give that image in your gridder a rightclick > class called fixed
-
RE: Carousel click on desktop but slide on mobile
Ok!
Thanks for getting back to me, I'll leave it for now or check again after some updates. -
RE: Random intro image
With 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>
-
RE: Left/Right Padding on Mobile version for Horizontal Lines in grid
Thanks again for your help, that seems to have done the trick!
-
RE: No content after migration
To 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.
Latest posts made by Remco van Dun
-
RE: Text marquee space in between not working
I've tried without custom css but that doesnt fix it for me. Also checked to make sure all devices have a set distance.
At the bottom of the page I've added a marquee composed of different text entries for each city.
https://motusmori.remcovandun.nl/about/
It looks ok now but would be nice to use the space in between feature the way it's intended of course :)
-
Text marquee space in between not working
Hi Layteam!
I've noticed the space in between feature does not change anything in the text marquee? Is this something you would have a look at?
For now I'll just add whitespace behind the texts because a whitespace as separator is also not an option?
Thanks!
-
RE: Create 'inactive' menu for submenu on hover
@arminunruh
Thanks for the quick replyForgot to mention, I know about click but was wondering if this could be possible with on hover feature?
So hover, yes
Click, nopointer-events: none; unfortunately takes out the entire submenu.
-
Create 'inactive' menu for submenu on hover
Hi,
was wondering if there is an easy way to make a menu parent 'inactive'?
I'd like to have all the menu items as a submenu under INFO. Yet if you click info it will lead you to this page, so I'd like it to be inactive. Any options to do this? -
Row image background wrong side
Hi!
A while ago I made this website
https://www.ns16.nl/And I've set the background image to the right side but somehow it moved it to the wrong side?
If I add a left background image it does show both next to each other the way they are set.
I've also checked without custom css and it remains on the wrong side.
Hope to hear if this is a fixable bug?
best,
Remco -
RE: Collapse row when opening other
I've updated my Info page with the collapsed subcategories for each service. Thanks, I didn't even notice the top margin jump yet. I was looking at the way the content seem to move up from the bottom if you toggle between the services was odd.
Actually... this would be solved if there was a checkbox 'close other row before opening new row'?
And to make them appear from the same top margin I had to set all the gutters for the rows after the first to 0%. Maybe not how you intended but works for me :)
-
RE: Collapse row when opening other
I've seen your new update 'collapse other rows'. This kind of fixes it, thanks!
content moves a little weird from the bottom once you click through the options... Should it close first and open a new row another? Not sure if thats better. -
Collapse row when opening other
Great addition with the collapsible rows! Used custom code before but this is way more practical and doest restrict to the one row under the button.
That being said, is it possible to have a opened row collapse when a new one opens?
I've set up an example where I'd be able to use a summary of services with a collapsible row underneath.
https://remcovandun.nl/info-2/
When you click on Graphic Design the matched design services show.
Clicking on a different service should close the previous while opening the new row? Maybe a 'only 1 open row at a time' checkbox in the lay options somewhere?
best,
Remco -
Set HTML class and ID message window stuck
Hi,
Just checking if this is something you want to fix?
Was trying something by adding a class to a background, but the message window doesn't close when confirming it by clicking the save button. It does save the set class if you close the window manually.