Ctify_ v26.5.7
Fixing a small, yet annoying, visual bug
I realized that the image is not properly centered in the mobile view.
To fix this, I added this CSS snippet at the very top of pub/custom.css.
@media (max-width: 585px) {
div#wikitext .quoteright, div#wikitext .acaptionright {
clear:both;
float: none;
margin-left: auto;
margin-right: auto;
max-width: calc(100% - 14px)!important
}
}
This bugfix is already shipped in ctify_ v26.5.7.


