Change the size of the Logo area in the next gen builder

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

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 :robot:) is great for this type of question too.

Thank you all for the help. I forget to use AI sometimes.

Thanks again that was the issue.

1 Like