• Hi all, im hoping someone can help me,

    Im very new to css and have made some small edits in the custom css area of my site, however there is one thing I can’t seem to change no matter what I try so I’m obviously going wrong somewhere. Im pretty happy with everything else and am hoping to take my site live this week but I’m stuck with one thing

    I want to increase the size of my custom site logo but I just cant figure out how as nothing I’ve tried has worked.

    In the customizer settings the logo image is limited to max width of 50% & height of 300px which is what I presume is stopping me from having a larger logo despite trying various custom header css options i’ve found online.

    My site isn’t live yet so I haven’t posted a link but if necessary ill gladly disable the coming soon page for anyone wanting to check it out to help me

    Thanks in advance

Viewing 11 replies - 1 through 11 (of 11 total)
  • Sounds like you need to edit one of the PHP files to get what you are looking for. If the limits are set in the code I don’t think you will be able to effectively make changes via CSS.

    If you make it live I’ll take a quick look to see if I can help you pin point where to go

    Thread Starter wolfiedoodles

    (@wolfiedoodles)

    @darongeorge Thank You

    It should be live now

    wolfiedoodles.com

    Good news. Looks like it is controlled by css.

    There are three ways to change it that should work.

    Solution 1

    find this code in the css file of the site
    .grid-50 {
    float: left;
    width: 50%;
    }

    modify the width file and it should change the size

    Solution 2

    or you could write it in the custom CSS file like this

    .grid-50 {
    float: left;
    width: 80%;
    }

    Solution 3

    If that doesn’t work you could add an important tag, it would look like this

    .grid-50 {
    float: left;
    width: 80% !important;
    }

    either of those options above should work.

    Of course, you don’t really need to set it ot 80% necessarily. I was just giving an example

    Thread Starter wolfiedoodles

    (@wolfiedoodles)

    Sorry for the delay in replying I didnt get notified of the response on the thread for some reason. Thanks for that, its worked to increase the size but its also moved the social icons. How would I go about keeping those where they were and still having the increased logo size, Im presuming that’s down to the way the masthead is divided?

    Yea it is divided 50/50 so anything over 50% will push the icons down.

    Thread Starter wolfiedoodles

    (@wolfiedoodles)

    so is there any way to change the division ratio so that the icons go back to where they were but the logo stays as it is now?

    I”m not sure of an easy way to do that without actually modifying the theme code.

    Thread Starter wolfiedoodles

    (@wolfiedoodles)

    hmm ok so thats an issue i need to find a way around, could I use child theme options for that do you think? (not that I know how to sort that out lol.. but I’ve seen them mentioned as a way to change theme without affecting the original code.

    Im sorry if im asking stupid questions but im a complete newbie to this so I’m just learning as I go

    Theme Author coralthemes

    (@coralthemes)

    The max logo height can be extended with css:
    .custom-logo {max-height: 500px;}

    To increase the logo width it’s better to buy the pro version, or you need to copy and modify the header.php in the child theme (always when this file is updated in the parent theme).

    Thread Starter wolfiedoodles

    (@wolfiedoodles)

    Thanks for the replies, I’ve just removed the social icons and increased the logo size with css, shame because I liked the social menu being next to the logo but I’m not confident in the idea of using a child theme yet as I’m still learning about the basics I’ll confuse myself if I add more places to work lol.

    Is it possible to change the main navigation menu button text colors in css?, I’ve managed to change the hover color but cant seem to change the standard color

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘I need URGENT help with altering the custom header logo size’ is closed to new replies.