• Resolved jacobcarson

    (@jacobcarson)


    I’m having issues getting my entire header image to link back to my blog’s home page. For some reason only the top 100px or so links out of a 250px height image. Check out what I’m referring to here!

    I tried diving into the header.php to fix this last night but I haven’t much a clue what I need to be looking for. If it’s any help, I uploaded the picture to the header-wrapper image spot. Thanks!

    Edit: Fixed link.

Viewing 6 replies - 1 through 6 (of 6 total)
  • antonshevchuk

    (@antonshevchuk)

    Hi,
    Add next code to your CSS tab:

    #header .logo {
    height:100% !important;
    }

    esmi

    (@esmi)

    Try changing:

    #header .logo h1 a {
    display:block;
    height:100%;
    }

    to:

    #header .logo h1 a {
    display:block;
    height:240px;
    }

    in your theme’s stylesheet.

    Thread Starter jacobcarson

    (@jacobcarson)

    I first tried inserting the code Anton suggested via the dashboard themes>customize>css but it didn’t seem to help. I then searched for the code that esmi suggested replacing and the closest thing I can find is this:

    #header {
        height:250px;
        position: relative
    }
    	#header .logo {
    	    height:60%;
    	    text-transform: uppercase;
    	    margin:0 auto
    	}
    	#header h1 {
    	    font: bold 600%/100% Verdana,Tahoma,sans-serif;
    	    letter-spacing: -6px;
    	    margin:0;
    	    padding:0;
    	}
    	#header h2 {
    	    display:block;
    	    font-size:1.2em;
    	    margin:0;
    	    padding:0 8px;
    	}
    	#header .logo a {
    	    display:block;
    	}

    Help? Hahaha. Thanks for the quick responses by the way!

    Just to be clear I should be editing the style.css in /themes/constructor/, correct?

    Thread Starter jacobcarson

    (@jacobcarson)

    I could really use a fix here, any ideas?

    esmi

    (@esmi)

    Try to be a little more patient. People may be in very different time zones to you. It looks like the css I located is buried deep within the Constructor folders. Try adding:
    #header .logo h1 a {height:240px !important;}
    to the bottom of your style.css file.

    Thread Starter jacobcarson

    (@jacobcarson)

    That worked perfectly, thanks so much esmi. I’ll try and be more patient next time, was just getting a bit frustrated.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Trouble linking header with Constructor theme’ is closed to new replies.