Viewing 12 replies - 1 through 12 (of 12 total)
  • See this Codex entry.

    Thread Starter helpplease83

    (@helpplease83)

    This is why I’m confused this is the code in my header:

    [Code moderated as per the Forum Rules. Please use the pastebin]

    Thread Starter helpplease83

    (@helpplease83)

    This is why I’m confused this is the code in my header:

    <div id="logo">
    			<a href="<?php echo home_url( '/' ); ?>"><img class="ie_png" src="<?php echo $custom_logo; ?>" /></a>
    		</div>
    <?php else:?>
    		<div id="logo_text">
    			<a id="site_name" href="<?php echo home_url( '/' ); ?>"><?php bloginfo('url'); ?></a>
    <?php if(theme_get_option('general','display_site_desc')){
    		$site_desc = get_bloginfo( 'description' );
    		if(!empty($site_desc)):?>
    			<div id="site_description"><?php bloginfo( 'description' ); ?></div>
    <?php endif;}?>

    The entry show’s something else please help

    You’ve taken the url off the page in skin.css:

    #logo_text {
        text-indent: -9999px;
    }
    Thread Starter helpplease83

    (@helpplease83)

    Oh I see what your saying but, I added a logo in place of url but, with the logo that I added I know what to make that click able and make that a link.

    Pardon? The site url is there but it’s been taken off the displayed page by the CSS I gave above.

    Thread Starter helpplease83

    (@helpplease83)

    When I take this off `#logo_text {
    text-indent: -9999px;
    }` It shows the https://steve-mcshane.com/ on the screen, but I don’t want the url to show up on the screen i just want to link to the “Steve McShane” Logo

    Change <a id="site_name" href="<?php echo home_url( '/' ); ?>"><?php bloginfo('url'); ?></a> to <a id="site_name" href="<?php echo home_url( '/' ); ?>"><?php bloginfo('name'); ?></a>.

    You can’t add a link to the logo. It’s a background image.

    Thread Starter helpplease83

    (@helpplease83)

    I changed it but it didn’t do anything to the image?

    You can’t add a link to the logo. It’s a background image.

    Thread Starter helpplease83

    (@helpplease83)

    I did get it to work like this.

    #logo_text {
    background-image:url(logo.jpg);
    height:72px;
    text-indent:-9999px;
    width:300px;
    }

    Thread Starter helpplease83

    (@helpplease83)

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Logo help’ is closed to new replies.