• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/
  • On Plesk for Linux mod_status is disabled on upgrades to improve Apache security.
    This is a one-time operation that occurs during an upgrade. You can manually enable mod_status later if needed.

Can we make logo a percentage instead of fixed size?

The style of images on mobile devices is defined by WPB's default CSS file (/css/style.css):

Code:
/* Text */
.mobile-view .widget-text img {
	height: auto;
	max-width: 100%;
	width: auto;
}

Hence, you could achieve the resizing by putting some code into the meta tags field of WPB's advanced settings. It will overwrite the definitions of the CSS file, but for the header image only:

Code:
<style type="text/css">
<!--
.mobile-view .widget-header img {
	width: 50%;
	height: 50%;
}
-->
</style>
 
Last edited:
Back
Top