Can't resize logo in responsive theme?
I've been knocking my head against this one for hours. I haven't dabbled in web development in years, so I'm very rusty.
I setup a new website, clearerlines.net, designed a logo for the header, and installed it using the custom theme's(Nova Lite) options pane.
For some reason I can't yet figure out, the logo is unchangeably small. Is it due to the 'responsive' design code? Either way, is there a way around it to gain the desired effect? I'm willing to lose the responsive design in the header to gain this result, but I would like to avoid that.
Help?
Answers 1
Your header is comprised of two spans which define their own width (at desktop view):
You need to edit these spans accordingly and there's a couple of ways to do this:
Your theme may provide you options in the backend dashboard that allow you to specify/modify the width of your logo area.
If not, you should override the theme template file that contains the header markup above in a child theme (recommended).
I would start looking at your
header.php
in your parent theme directorynova-lite
to see whether it contains the above markup. If not, it may be included in another template file.Once found, override it in a child theme and modify the spans to something more generous for the logo, like
span5
andspan7
for the menu. You have a total of 12 columns to work with, so divide them as you see fit.Your theme is also using an old version of Bootstrap, version 2.3.2 for which documentation can be found here: http://getbootstrap.com/2.3.2/