Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello,
    You have to change your CSS. To add custom css you can use plugin: https://wordpress.org/plugins/wp-add-custom-css/
    Activate the plugin.
    and add following code inside the Custom CSS box.

    #fr-logo-group .img-responsive{
    width: 750px;
    height: 100px;
    }

    Thanks!!

    Thread Starter linburnlane

    (@linburnlane)

    Thanks for the quick reply.

    I’m using a child theme so have added that to my style.css file but unfortunately, it hasn’t changed anything.

    The website is http://mudgeeaeroclub.hwy.com.au

    Hello,
    Hope you are well.

    I just simulated the changes with my web inspector and verified that the code is correct. Could you please try the custom css plugin to see if you have any luck?

    You can also add the !important rule before the semicolon. This will sometimes help to force the rule.

    CSS Example

    #navigation {
    color: black !important;
    }

    Thanks.

    Setting !important here won’t really help because the logo is being constrained by the containing element .flat-responsive-logo. You could override the width of that element with this code:

    .flat_responsive_logo {
      width: auto;
    }

    but it causes your menu to be pushed down to the next “line” because there isn’t enough space.

    Hi,
    You can increase the logo size by trying this CSS code
    #logo img
    {
    width:200px /*change the width of image that fit your style*/
    height: 50px; /*change the height of image that fit your style*/
    }
    Hope, it will be helpful!
    Thanks!!

    Hello linburnlane,
    Here is another css tweaks.

    .flat_responsive_menus {
        width: 55% !important;
    }
    .flat_responsive_logo {
        width: 45% !important;
    }

    Note: Delete the height from code I provided earlier. I hope this will help resolve your issue.

    Thank you

    Thread Starter linburnlane

    (@linburnlane)

    Awesome! Thanks, Madhusuda!

    The % width code worked perfectly!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Increase size of logo area’ is closed to new replies.