Title: szerner's Replies | WordPress.org

---

# szerner

  [  ](https://wordpress.org/support/users/szerner/)

 *   [Profile](https://wordpress.org/support/users/szerner/)
 *   [Topics Started](https://wordpress.org/support/users/szerner/topics/)
 *   [Replies Created](https://wordpress.org/support/users/szerner/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/szerner/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/szerner/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/szerner/engagements/)
 *   [Favorites](https://wordpress.org/support/users/szerner/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-Five] How to modify the Drop Cap](https://wordpress.org/support/topic/how-to-modify-the-drop-cap/)
 *  [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/how-to-modify-the-drop-cap/#post-18566222)
 * To adapt the size of the drop cap to my needs I wrote
 *     ```wp-block-code
       .has-drop-cap:not(:focus)::first-letter {	font-size: 3.55em;}
       ```
   
 * in my custom CSS.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-Five] Image caption below image (not overlaid)](https://wordpress.org/support/topic/image-caption-below-image-not-overlaid/)
 *  [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/image-caption-below-image-not-overlaid/#post-18566187)
 * This works form me to show the captions below the images on smaller screens:
 *     ```wp-block-code
        @media (max-width: 782px) {	 .wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption)::before   {		 backdrop-filter: none;	 }	 .wp-block-gallery.has-nested-images figcaption {		 position: relative!important;		 text-shadow: none!important;		 background: white!important;		 padding: 0.5rem!important;		 color: black!important;	 } }
       ```
   
 * Please adjust the colors and paddings to your needs. To always show the captions
   below their images just remove the surrounding media query (@media).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Twenty-Five] Full Width Image render issue](https://wordpress.org/support/topic/full-width-image-render-issue/)
 *  [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/full-width-image-render-issue/#post-18559532)
 * For me it doesn’t look distorted. In your example the “intrinsic” aspect ratio
   is 1920:800 = 2.4, the “rendered” aspect ratio is 1905:794 = 2.399.., so actually
   the same. And for me the ratio stays the same regardless of the size of my browser
   window.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Lightbox for Gallery & Image Block] Arrow buttons not changing color](https://wordpress.org/support/topic/arrow-buttons-not-changing-color/)
 *  [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/arrow-buttons-not-changing-color/#post-18467851)
 * Since the arrows svg don’t contain a `<g>` but a `<polyline>` element you could
   write in your css:
 *     ```wp-block-code
       .baguetteBox-button g, .baguetteBox-button polyline {stroke: red;}
       ```
   
 * to select both.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Create / Edit Page Loads Template](https://wordpress.org/support/topic/create-edit-page-loads-template/)
 *  [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [1 year, 5 months ago](https://wordpress.org/support/topic/create-edit-page-loads-template/#post-18269888)
 * Hi [@gpotter](https://wordpress.org/support/users/gpotter/),
 * I just experienced that same issue: I’m not able to edit the page or post content
   with Gutenberg plugin v20.10.1 enabled. I didn’t find any other workaround yet.
   
   I didn’t touch that site for a while, it’s still a work in progress. I only kept
   wordpress and my plugins up to date, so I can’t tell which update (possibly) 
   might be responsible for this.Edit: forgot to mention that immediately after 
   opening a page for edit I can see the outline of the page on the left side for
   a fraction of a second, which then is replaced by the templates outline.
    -  This reply was modified 1 year, 5 months ago by [szerner](https://wordpress.org/support/users/szerner/).
    -  This reply was modified 1 year, 5 months ago by [szerner](https://wordpress.org/support/users/szerner/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP-Forge] Mobile Off-Canvas: Menu not showing up](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/#post-10674048)
 * Hm, there seems to be an inconsistency with the theme’s `style.css`. The `style.
   css` from the demo server lacks the problematic statement
 * `.title-bar {display:none}`
 * wheareas the official themes `style.css` (also on github) has this line included.
   
   So the demo server doesn’t have this issue, the installable theme does.
    -  This reply was modified 7 years, 10 months ago by [szerner](https://wordpress.org/support/users/szerner/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP-Forge] Mobile Off-Canvas: Menu not showing up](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/#post-10673803)
 * I managed to show up the off-canvas menu bar by adding
 *     ```
       .off-canvas-content .title-bar {
       	display: inherit;
       }
       ```
   
 * into my style.css. By default it was on `display: none;`.
 * The only issue remaining is that now the off-canvas `button.close-canvas` overlaps
   with my first `button.submenu-toggle`.
    -  This reply was modified 7 years, 10 months ago by [szerner](https://wordpress.org/support/users/szerner/).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP-Forge] Mobile Off-Canvas: Menu not showing up](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/#post-10646462)
 * That’s what I did first of all, please see my entry post.
 * But don’t mind, if it doesn’t work on my server, I will stick to the standard
   mobile menu, it’s for a very low budget project and not worth spending hours 
   of time for debugging.
 * Thanks.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP-Forge] Mobile Off-Canvas: Menu not showing up](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/#post-10644154)
 * I’m developping with chrome developer tools, where the browser cache is allways
   disabled (Network>Disable cache). So no cache problem.
 * The problematic title bar element
 * `<div class ="title-bar hide-for-large">...`
 * has a width and height of ‘auto’, whereas in your demo site that same element
   has concrete dimensions…
 * I just downloaded a fresh new copy of ‘wp-forge’ theme, but no effect. I think
   I will have to upload the site to my testing server and see if it makes any difference.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[WP-Forge] Mobile Off-Canvas: Menu not showing up](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/mobile-off-canvas-menu-not-showing-up/#post-10643954)
 * Hi [@tsquez](https://wordpress.org/support/users/tsquez/),
 * thank you (again) for your assistance, it is very appreciated!
    I deactivated
   all plugins for testing purposes with no effect on my issue.
 * I am developping locally with XAMPP and PHP v7.1.11. Your demo site has no issues
   for me either, so it must be something with my server or wordpress setup.
 * I will investigate further and be back with my results (if any).
 * Stephan
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[TotalPress] Theme not ready for translations](https://wordpress.org/support/topic/theme-not-ready-for-translations/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/theme-not-ready-for-translations/#post-10617743)
 * Hi [@tsquez](https://wordpress.org/support/users/tsquez/),
 * thank you for looking into this. Now I’m a little bit confused about what an 
   update of the parent theme (your totalpress theme) means for my child themee:
 * If I duplicate some parent theme files into my child theme’s directory, and the
   parent theme gets an update to those files, I assumed that I would have to duplicate(
   and modifiy for i18n) them again. Otherwise my child theme would use the outdated
   code of the duplicated (and modified) child theme files. Or does this happen 
   automatically?
 * Thanks again, your help is greatly appreciated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Organiser] Wrong time format (24h) when entering event (german site)](https://wordpress.org/support/topic/wrong-time-format-24h-when-entering-event-german-site/)
 *  Thread Starter [szerner](https://wordpress.org/support/users/szerner/)
 * (@szerner)
 * [12 years, 6 months ago](https://wordpress.org/support/topic/wrong-time-format-24h-when-entering-event-german-site/#post-4415302)
 * Hi Stephen,
 * thank you very much for your quick answer, that solved my issue. Now the time
   format shows and works as expected.
 * Stephan

Viewing 12 replies - 1 through 12 (of 12 total)