• I am having a similar problem on

    https://www.musicianstelevision.com/wordpress

    I tried a few different variations to get the logo to show up, with no luck. Anyone with any suggestions?

    current code for header in css.style is as follows:

    /* Header */
    
    #header {
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 900px;
    	height: 159px;
    }
    
    #headerimg {
            padding: 17px 0 0 14px;
            height:140px;
            background-image: url('images/mtn_mulitco_logo.png') 500px 0px no-repeat;
    }
    
    #header h1 {
    	width: 590px;
    	height: 100px;
    	position: absolute;
    	bottom: 0;
    	left: 0;
    }
    
    #header h1 a {
    	width: 590px;
    	height: 100px;
    	display: block;
    	text-decoration: none;
    }
    #header h1 a .blogName {
    	/*display: none;*/
    	font-size: 24px;
    	color: #FFFFFF;
    	font-weight: light;
    	display: block;
    }
    
    #header a .blogDescription {
    	font-size: 36px;
    	color: #cccfd1;
    	font-weight: normal;
    	display: block;
    }
    
    /* Header auxiliary box */
    
    #auxBox {
    	width: 310px;
    	height: 118px;
    	position: absolute;
    	bottom: 0;
    	right: 0;
    }
    
    #siteFeeds {
    	margin-left: 15px;
    	margin-top: 15px;
    }
    
    #siteFeeds li {
    	list-style: none;
    	background-image: url('images/rss-icon.png');
    	background-repeat: no-repeat;
    	background-position: left top;
    	padding-left: 20px;
    	margin-bottom: 0.5em;
    }
    
    #siteFeeds li a {
    	color: #FFFFFF;
    }
    
    #searchForm {
    	width: 266px;
    	height: 31px;
    	background-image: url('images/search-background.png');
    	background-repeat: no-repeat;
    	background-position: left top;
    	position: relative;
    	margin-left: 15px;
    	margin-top: 15px;
    }
    
    #searchForm #s {
    	width: 198px;
    	height: 22px;
    	position: absolute;
    	left: 7px;
    	top: 2px;
    	border: none;
    	background-color: transparent;
    	line-height: 27px;
    	color: #FFFFFF;
    	padding-top: 5px;
    }
    
    #searchForm #searchsubmit {
    	position: absolute;
    	right: 0;
    	top: 0;
    }
    
    /* Enable/Disable animation button */
    
    #enableDisableAnimation {
    	top: 6px;
    	right: 8px;
    	position: absolute;
    }
    
    #enableDisableAnimation img {
    	border: none;
    	display: none;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • Your theme is killerlight/style.css so the style.css with relative path to images will start under killerlight/ but the image killerlight/images/mtn_mulitco_logo.png does not exist.

    I also seen in the HTML View Source of your site you are trying to load https://www.musicianstelevision.nl/wp-content/uploads/mtn_mulitco_logo.png which also doesn’t exist.

    Thread Starter baymediaarts

    (@baymediaarts)

    umm, I placed the image (mtn_mulitco_logo.png) in the media library, in the control panel of wordpress. The location is

    https://musicianstelevision.com/wordpress/wp-content/uploads/2009/01/mtn_mulitco_logo.png

    Thread Starter baymediaarts

    (@baymediaarts)

    I was following other forums advice/directions. they where giving advise based on the specific theme and setup. I am pretty sure i would need custom directions. so, if you would help me out, I would really appreciate it.

    Thread Starter baymediaarts

    (@baymediaarts)

    I have decided to put logo in sidebar instead but I get a box with no image and question mark inside it. I also tried using a text widget with no luck. Here is my current sidebar code;

    <div class="sidebar">
    <img src="url_of/https://www.musicianstelevision.com/wordpress/wp-content/uploads/2009/01/mtn_mulitco_logo.png"
    width="140" height="200" />
    <?php
    /* if the current pages has a parent, i.e. we are on a subpage */
    if ( $post->post_parent) {
    	$parent_title = get_the_title($post->post_parent);
    	$parent_link = get_permalink($post->post_parent);
    	$children = wp_list_pages("title_li=&include=".$post->post_parent."&echo=0");
    // list the parent page
    	$children = wp_list_pages("depth=1&title_li=&child_of=".$post->post_parent."&echo=0");
    // append the list of children pages to the same
    }																							// $children variable
    
    /* else if the current page does not have a parent, i.e. this is a top level page */
    else {
    	$parent_title = get_the_title($post->ID);
    	$children = wp_list_pages("title_li=&include=".$post->ID."&echo=0");
    	$children = wp_list_pages("depth=1&title_li=&child_of=".$post->ID."&echo=0"); // form a list of the children of the current page
    }
    
    if ($children) {
    	echo "<div style='float: right; width: 220px; padding-top: 25px; height: 100%;'>";
            echo "<a href='" . $parent_link . "'>" . $parent_title . "</a>";
    	echo "<ul style='list-style: none; padding-left: 20px;'>";
    	echo $children; /*print list of pages*/
    	echo "</ul>";
    	echo "</div>";
    } ?>
    </div>
    </div>
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘logo not showing up in header’ is closed to new replies.