Community guidelines
Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.
Michal Koza Newcomer
@KoMiKo · Joined 8 years ago · 8 posts · 4 topics · 3 reputation
Badges
Recent posts
-
Crikey error when user fill not existing email
· 7 years ago
Form plugin working well, until user make mistake in his email field. When he fills not existing email, he gets Crikey! error: Expected response code 250 but got code "550", with message "550 5.1.10 R
-
Form Field Onchange or Onclick - how to call Javascript function
· 7 years ago
SOLVED Script: document.getElementById('myid').onclick = MyFunction; did the job. In this case Javascript must be renderd after content. Othervise it is possible to use JQuery script: $(document).rea
-
Form Field Onchange or Onclick - how to call Javascript function
· 7 years ago
To hide/unhide fields in HTML I am using styles and javascript function, called by 'onchange' or 'onclick': <input id="users" type="radio"..... onclick="MyFunction();"/> Now I'm trying to create
-
Quark Blog and Internet Explorer 11 problem
· 8 years ago
...Microsoft Edge is half way 😀
-
Quark Blog and Internet Explorer 11 problem
· 8 years ago
I play with Quark theme and Blog. While in Firefox and Chrome it looks ok: in IE 11 here are some problems with rendering and missing arrow:
-
Error in Quark base.html.twig?
· 8 years ago
I think, here is wrong placement of "/div" tag before "block footer" Instead of: </section> </div> {% block footer %} <section id="footer" class="section bg-gray">
-
[SOLVED] Display specific navigation level
· 8 years ago
Sorry for little mistake, this code: {% if not (p.parent.root and current_page == "" )%} should work for you better. parent_page == "" is useless here. I used whole row from my code based on Learn the
-
[SOLVED] Display specific navigation level
· 8 years ago
Try this: {% if not (p.parent.root and current_page == "" and parent_page == "" )%} I tested it now, it should work: ... ... {% set current_page = (p.active or p.activeChild) ? 'active' : '' %}