Change logo size (max-width=300px)

This commit is contained in:
Julia.Radzhabova
2025-08-14 16:17:47 +03:00
parent 8e937e9baa
commit d0b7f2e64b
7 changed files with 8 additions and 8 deletions

View File

@ -872,7 +872,7 @@ VE.ApplicationController = new(function(){
}
if (value.logo.image || value.logo.imageEmbedded) {
logo.html('<img src="'+(value.logo.image || value.logo.imageEmbedded)+'" style="max-width:100px; max-height:20px;"/>');
logo.html('<img src="'+(value.logo.image || value.logo.imageEmbedded)+'" style="max-width:300px; max-height:20px;"/>');
logo.css({'background-image': 'none', width: 'auto', height: 'auto'});
value.logo.imageEmbedded && console.log("Obsolete: The 'imageEmbedded' parameter of the 'customization.logo' section is deprecated. Please use 'image' parameter instead.");