• Resolved skyediaz

    (@skyediaz)


    Hi, I’m using Codium Extend 1.0.8 by Henri Labarre theme with WP version 3.1 and noticed that the header image makes my whole blog disappear when I’m logged off of the WP Admin area (except for the background). Why is this??? The image is a jpg and the size is exactly what the theme called for. What do i need to do??

Viewing 2 replies - 16 through 17 (of 17 total)
  • henri

    (@riri23)

    Yep normal, still in functions.php go several lines under :

    // gets included in the site header
    function header_style() {
        if (get_header_image() != ''){
        ?><style type="text/css">
            div#header {
                background: url(<?php header_image(); ?>); height :230px; -moz-border-radius-topleft:6px;border-top-left-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;
            }
            <?php if ( 'blank' == get_header_textcolor() ) { ?>
    		h1.blogtitle,.description { display: none; }
    		<?php } else { ?>
    		h1.blogtitle a,.description { color:#<?php header_textcolor() ?>; }
        	<?php
    		} ?>
    		</style><?php
    		}
    	}

    And change height :230px to 125px

    sirdavy

    (@sirdavy)

    Excellent, thank you Henri.

    There was still a bit of a repeat of the image, I needed to knock another 20px off. Changing 230px to 105px worked perfectly. Thans so much for your swift response.

Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Codium header image makes my BLOG DISAPPEAR!’ is closed to new replies.