Home › Forums › Lorina › Changing header logo width › Reply To: Changing header logo width
July 4, 2020 at 11:01 am
#11265
Andy
Keymaster
To change the width of the logo section, add this code to ‘Appearance’ > ‘Customize’ > ‘Additional CSS’:
@media only screen and (min-width: 769px) {
#masthead > .container {
grid-template-columns: minmax(auto,300px) auto;
}
}
The key value here is 300px so change that to a different value, say 400px for example, and the logo section will max to that width.