Skip to content
Grav 2.0 is officially stable. Read the announcement →

pamtbaau Legend

Grav Forum Moderators

@pamtbaau · Joined 8 years ago · 3184 posts · 17 topics · 1019 reputation

Badges

Grav Core Team ModSquad Team Member ✏️ First Post 💬 Conversation Starter ❤️ Well Liked

Recent posts

  • Create floating/sticky sidebar in Quark blog · 5 years ago

    @bozzochet, Nice to hear it's working. According the forum's netiquette, you may now spread some 'love' and mark the issue as being solved. ;-)

  • Create floating/sticky sidebar in Quark blog · 5 years ago

    @bozzochet, I'm afraid you are overestimating my skill in generating a mental image of the final generated HTML... And HTML is the only thing of interest because CSS styles HTML elements, not Twig tem

  • Create floating/sticky sidebar in Quark blog · 5 years ago

    @bozzochet, I took a look at how Bootstrap implements a 'sticky' toc. On a fresh install of Grav 1.7.9, I added the following snippet to '/user/themes/quark/css/custom.css': // Only apply sticky when

  • Grav YouTube Plugin ignores options once placed into Gantry 5 HTML particle · 5 years ago

    @01K, Ouch... didn't pay attention to the 'autoplay' and 'color' properties... Autoplay: Did some Googling: The reason seems to be because Google and other browsers have disabled autoplay because of t

  • Grav YouTube Plugin ignores options once placed into Gantry 5 HTML particle · 5 years ago

    @01K, I'm using a regular page in theme Quark. No Gantry. Added the shortcode you showed [youtube color=white autoplay=1]https://www.youtube.com/watch?v=BK8guP9ov2U[/youtube] to a regular page: It fa

  • Easy Theme setup? · 5 years ago

    Once in a while questions are being asked about the ease of use of Grav for non-developers. Target audience: IMHO, Grav has been designed with the developer in mind. A developer who knows his/her way

  • Resize hero height · 5 years ago

    @bozzochet, I have no idea how your page needs to look like, but 'max-height: 0' seems quite useless. The height of the hero is now entirely defined by its padding and its inner elements and will expa

  • Resize hero height · 5 years ago

    @bozzochet, Be aware that the .hero class sets quite large vertical paddings (6rem/7rem) which may force the display to be bigger then the max-height.

  • Resize hero height · 5 years ago

    @bozzochet, As far as I can see, the different hero-* classes only set a different 'min-height'. If you want a maximum height for either of the classes, you could add a 'max-height' and see how that w

  • Image upload with preprocessing · 5 years ago

    @stepbyweb, You could create a plugin and subscribe to event onFormProcessed. In that event, you can fetch the values submitted by the form. Never tried your specific use-case though...