Hi @frenchiehill,
Thanks for contacting us,
For this you can paste the following css code in custom css filed (Theme Dashboard >> appearance >> customize >> header setting >> custom css filed)
.brand img.custom-logo
{
width: 1200px !important;
}
Change width size according to your need.
Thanks
-
This reply was modified 8 years, 1 month ago by
Imran Ali.
it could be work, but wordpress resize the original to 1200 pixels, and inside “website identity” the resize section stay at his first size : look at this 2 screenshots :
https://drive.google.com/file/d/1qzIfv7nGqsWpbS4_-beF_LLzuXDrqsq4/view?usp=sharing
https://drive.google.com/file/d/1tT2Hraa-R5TjIEO-70c_hOLEomVSUx4m/view?usp=sharing
Hi @frechiehill,
Following the instruction is given below, you can change the height or Width of the logo.
1. First of all you can download code-snippets plugin from ww.wp.xz.cn, You can download the plugin with this link. https://ww.wp.xz.cn/plugins/code-snippets/
2. Now you activate code-snippets plugin.
3. Then click on the add menu of Snippets plugin and paste it in the below code then click on the save changes button
function rambo_customlogo() {
add_theme_support( ‘custom-logo’, array(
‘width’ => 150,
‘height’ => 100,
) );
}
add_action( ‘after_setup_theme’, ‘rambo_customlogo’, 11 );
You can follow the screenshot below.
http://prntscr.com/frspzf
You can change the height or width according to your need.
4. Now you can click on All Snippets and activate the code, you can follow the given screenshot.
http://prntscr.com/frsqpn
Hope this helps!
Thanks
It works great ! Thanks a lot ! Good work !