diff --git a/galerie/templates/galerie/Galerie.html b/galerie/templates/galerie/Galerie.html
index b2dfe994..aadc969e 100644
--- a/galerie/templates/galerie/Galerie.html
+++ b/galerie/templates/galerie/Galerie.html
@@ -62,11 +62,12 @@
{% endwith %}
{% endif%}
+
+ class="obrazek">
{% if obrazky_dalsi %}
{% with obrazky_dalsi|first as dalsi_obrazek %}
diff --git a/mamweb/static/css/mamweb.css b/mamweb/static/css/mamweb.css
index fd686e98..de8b5058 100644
--- a/mamweb/static/css/mamweb.css
+++ b/mamweb/static/css/mamweb.css
@@ -1113,6 +1113,21 @@ div.zadani_termin .datum {
float: right;
}
+/* posune kotvu obrázku v galerii o oranžový pruh dolu, aby se pod ním obrázek neschovával */
+/* https://stackoverflow.com/questions/10732690/offsetting-an-html-anchor-to-adjust-for-fixed-header */
+.kotva_obrazku {
+ display: block;
+ position: relative;
+ width: 0;
+ height: 55px; /* viz #title */
+ margin-top: -55px; /* viz #title */
+}
+@media(max-width: 860px) {
+ .kotva_obrazku {
+ height: 3em; /* #FIXME nemám páru, jak zjistit výšku toho elementu */
+ margin-top: -3em; /* #FIXME */
+ }
+}
/**/