Is there any way to change the logo size in the Artful theme?
It’s very small but I can’t seem to find an option to change the size anywhere.
Noob here, sorry if it’s a stupid question.
Is there any way to change the logo size in the Artful theme?
It’s very small but I can’t seem to find an option to change the size anywhere.
Noob here, sorry if it’s a stupid question.
Not stupid at all.
If you find the Settings section on the left hand side and select Code, then click the CSS tab, then paste this code in there.
.navbar-brand img {
max-width: 75px;
height: auto;
}
The current logo is set to 75px, so just change the size to suit. Be aware that you’ll need to experiment a bit when making changes like this in case it breaks the design at another screen size.
You can’t do any harm experimenting like this though.
Rob
Thank you so much!
It worked like a charm!
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.