Hey ionutganea,
How are you doing today?
This should most likely be possible to do with some CSS. If you could post link to your site I’d be more then happy to try to assist with some custom CSS so you can increase size of your logo π
Cheers,
Bojan
@ionutganea post your site address
Sorry about that.
http://www.perilsandconsequences.com
still a work in progress. i’d like some specific instructions,as i am not super savy at this. thank you very much
Try this css code
.navbar-brand img {
width:200px;
}
Hey ionutganea,
Using only what @ashiquzzaman suggested will change the width of the image but it will distort the image as image link which is the holder of that image has specific height defined.
Please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://ww.wp.xz.cn/plugins/simple-custom-css
.navbar-brand img {
width: 200px;
}
a.navbar-brand {
height: auto;
}
Hope this helps π
Cheers,
Bojan
Hi Bojan, i do have a style.css. do i add it under header anywhere, or in a particular spot for it to work?
Hey ionutganea,
Nema na cemu π
In case you’re using child theme you can add the code to the bottom of your child theme style.css.
If not, I wouldn’t suggest editing theme core files as any changes will be lost first time you update the theme. So the correct way of doing that would be to use plugin such as the one I mentioned above http://ww.wp.xz.cn/plugins/simple-custom-css.
Once the plugin is installed and activated you can add the code to Appearance -> Custom CSS.
Hope this helps π
Cheers,
Bojan
I tried his as well for using the plugin suggested and the code
.navbar-brand img {
width: 200px;
}
a.navbar-brand {
height: auto;
}
It doesn’t seem to be working.
Hey there supercatmatt,
I’ve tested the above code using developer tools on your site and it appears to be working, can you please let me know where exactly are you adding the code?
You mentioned you’re using Simple Custom CSS, if that is the case do you have any other code there? If yes can you please post it here (if there is a lot of code please use pastebin.com instead and paste the link here).
Also I don’t see the code added on your site so please add it so I can check if it is being overridden by something else.
Cheers,
Bojan – WPMU DEV