• jacobv

    (@jacobv)


    Hey,

    After changing the header.php to include link to home for my logo it isn’t showing. The image is there ( i can click it) but it is simply not showing.

    The code is:

    <body>
    <div class="wrapper">
    <div id="header">
    	<div id="logo">
    		<a href="/"><img src="https://www.jacobveenstra.nl/wp-content/uploads/2010/02/Logowebready400.jpg" /> <h3><?php bloginfo('description'); ?></h3></a>
    	</div>
    <?php get_search_form(); ?>
                <ul id="navAdmin">
                    <?php wp_register(); ?>
                    <li><?php wp_loginout(); ?></li>
    <li><a href="<?php bloginfo('rss2_url'); ?>" title="RSS">RSS</a></li>
                    <?php wp_meta(); ?>

    I am using the sevenfive theme from Press 75 @ https://www.jacobveenstra.nl

    Any suggestions?

Viewing 4 replies - 1 through 4 (of 4 total)
  • huggie

    (@huggie)

    Check the margin properties in the CSS

    #logo img{
    margin:-120px 0 0 -100px;
    }
    Thread Starter jacobv

    (@jacobv)

    I’ve got this;

    #logo a{
    position:absolute;
    width: 565px;
    height: 100px;
    text-indent: -1000px;
    }
    
    #logo img{
    margin:-120px 0 0 -100px;
    }
    huggie

    (@huggie)

    The problem is the text-indent -1000px; If you comment that out you’ll see the image.

    Thread Starter jacobv

    (@jacobv)

    Fixed it! Thanks.

    Follow up: Now my image is overflowing over the tekst/images (depending on which page) below. I didn’t used to. It becomes transparent when i hover over it.

    I tried adding overflow: hidden to the stylesheet but that cut to much of the image, just a small part was visible. Suggestions?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Site logo not showing’ is closed to new replies.