Brian9
August 27, 2025, 11:43am
1
I am new to the next gen builder and I would like to change the size (width) of the logo area in the header. This is the css selector, .kn-brand > img:nth-child(1)
.kn-brand > img:nth-child(1) {
max-width: 400 px;
}
This is what I have tried. But it doesn’t work. Any ideas on what I am doing wrong?
Thanks
Kara
August 27, 2025, 6:10pm
2
Hey @Brian9 , it looks like there is a space between 400 and px, try removing it:
…max-width: 400px; }
ChatGPT (other AI’s are available ) is great for this type of question too.
Brian9
August 27, 2025, 6:38pm
4
Thank you all for the help. I forget to use AI sometimes.
Thanks again that was the issue.
1 Like