• Greetings!

    I have a theme that allows for only a very small area for the logo image on the header. As you can see by the web page – they area needs to be expanded to fit our logo.

    Do I expand that area in style.css?

    What line?

    The site under construction is: https://magidbernard.com/wordpress/

    Thanks, Marty

Viewing 5 replies - 1 through 5 (of 5 total)
  • Looks like you need to modify this in style.ccs:

    #head{ /*head area, which contains main menu and logo*/
    z-index: 100;
    position:relative;
    }

    Try adding height:100px; (replace 100 with the height of your image)?

    The ccs on that site is rather extensive (for me anyway), so it may require more tweaking.

    Thread Starter Marty11

    (@marty11)

    Planky –

    I am not right at my WP dashboard. Do I also have an option for width? That’s the biggest problem right now.

    style.css:

    #top .logo, .logo a {
    border:medium none;
    display:block;
    height:85px;
    left:0;
    margin:0;
    padding:0;
    position:relative;
    top:0;
    width:165px;
    }

    Remove width:165px;. You’ll then need to adjust the width & padding in:

    #top .nav a {
    display:block;
    float:left;
    line-height:18px;
    min-height:35px;
    outline:medium none;
    padding:2px 10px;
    text-decoration:none;
    width:85px;
    }

    Its not the one in planky post its here in style.css

    #top .logo, .logo a {
    border:medium none;
    display:block;
    height:85px;
    left:0;
    margin:0;
    padding:0;
    position:relative;
    top:0;
    width:165px;

    If widen it that it will mess your menu as they are connected

    https://www.brianwebster.tv

    As you can see the logo in the upper left is terribly small. I am not much of a code person but I can manage. Are there any ideas to make that space bigger without compromising the rest of the page?

    Thank you for any help you can provide.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Logo Area Needs to be Bigger in Theme’ is closed to new replies.