Answers for "how to increase wordpress logo image size"

0

create custom image size wordpress

add_image_size( 'custom-size', 220, 180 ); // 220 pixels wide by 180 pixels tall, soft proportional crop mode

add_image_size( 'custom-size', 220, 180, true ); // 220 pixels wide by 180 pixels tall, hard crop mode

add_image_size( 'custom-size', 220, 220, array( 'left', 'top' ) ); // Hard crop left top
Posted by: Guest on February-18-2021
0

how to change logo size in wordpress

.logo {
    max-width: 126px;
}
Posted by: Guest on August-02-2020

Code answers related to "how to increase wordpress logo image size"

Browse Popular Code Answers by Language