Muut Archive Legend
@Muut · Joined 9 years ago · 18337 posts · 3878 topics · 137 reputation
Badges
Recent posts
-
How to shrink the header while scrolling down the page?
· 11 years ago
wow, this skeleton demo is great. love you guys !
-
How to shrink the header while scrolling down the page?
· 11 years ago
okay thanks :D
-
How to shrink the header while scrolling down the page?
· 11 years ago
It's exactly the same as the header in Antimatter theme. You can see it in action here: onepage skeleton demo Basically it's just CSS and JavaScript. There's a JS function in antimatter.js called scr
-
How to shrink the header while scrolling down the page?
· 11 years ago
exactly !
-
How to shrink the header while scrolling down the page?
· 11 years ago
You mean like on the GetGrav homepage?
-
How to shrink the header while scrolling down the page?
· 11 years ago
how to get this effect ?
-
Modular template with div wrappers around some modules
· 12 years ago
Indeed that did it! Thank you very much for the help!
-
Modular template with div wrappers around some modules
· 12 years ago
try this: {% for module in page.collection() %} {% if loop.first %} <section class="{{ module.title }}"> {{ module.content }} </section> {% else %} <div cl
-
Modular template with div wrappers around some modules
· 12 years ago
Yep, that's what I thought but it also wraps the div around the first section (with the intro class). Code + screenshot how it looks right now... {% for module in page.collection() %} {% if modul
-
Modular template with div wrappers around some modules
· 12 years ago
Oh yah, just move the for statement outside of everything, so the if statements are inside it.