• Resolved ionutganea

    (@ionutganea)


    Hi. great theme first thing first. i would like to know how to increase the logo size in the header, mine is very small:) i do not see any option as such anywhere.
    thanks!

Viewing 10 replies - 1 through 10 (of 10 total)
  • 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

    Thread Starter ionutganea

    (@ionutganea)

    Sorry about that.
    https://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:

    https://www.ads-software.com/plugins/simple-custom-css

    .navbar-brand img {
        width: 200px;
    }
    
    a.navbar-brand {
        height: auto;
    }

    Hope this helps ??

    Cheers,
    Bojan

    Thread Starter ionutganea

    (@ionutganea)

    Hi Bojan, i do have a style.css. do i add it under header anywhere, or in a particular spot for it to work?

    Thread Starter ionutganea

    (@ionutganea)

    Хвала

    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 https://www.ads-software.com/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

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘increase logo size in header’ is closed to new replies.