- This topic has 3 replies, 2 voices, and was last updated 4 years, 3 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘How can I make the logo larger?’ is closed to new replies.
I’m recreating a site from an existing look. I have a logo that’s 730px X 199px and Azuma limits it to a smaller size. How can I make it post full size? Thanks!
When you upload a logo, the ‘Crop Image’ option is not mandatory. You can click ‘Skip Cropping’ and the image will not be cropped.
I have tried setting the logo both ways. Either way it displays it 20 to 30% smaller from the original image size (nothing cropped). I’m thinking it’s theme javascript setting the size and my CSS has no influence to try to enlarge it?
It looks like you have made some changes to the header layout in your child theme, but not changed it so the logo can go bigger than the standard area it is allocated.
Try adding this CSS also:
@media only screen and (min-width: 1025px) {
#masthead > .container {
grid-template-columns: 100%;
}
}