@paul_moxie to make your code valid you need a semicolon after 1px in your css:
.line {
stroke-width: 1px;
}
On the other hand I'm not quite sure if stroke-width will work at all for an hr-element. I’d try something along these lines:
.my-hr .lay-hr {
height: 1px;
}
Then add the class my-hr (call it whatever you fancy) to the hr-elements in the gridder. Unfortunately I can’t really explain why the lay-hr class needs to be there – But it needs to be – It’s something about that CSS-parent-child-thing I never really wrapped my head around.
Hope that helps!
Dear @this
there is no official way to do this.
What I could imagine is to place an image with CUSTOM CSS or some x- or y-offset.
Then make it invisible. But when you click it opens the slideshow.
I think this is not possible in a carousel though…
Let me know what you think.
Best!
Marius
Dear @michaelenglert
ah, this is what you mean.
The parallax effect in LayTheme is about the speed of specific elements when you scroll.
The thing you proposed is not possible yet. Maybe in the future.
Best!
Marius
Dear @kurtwoerpel
give this a try.
<script>
jQuery(document).on("click", "img", function(event) {
jQuery(this).addCLass("TEST");
});
</script>
Best!
Marius