Support » Themes and Templates » header too small, i need help to correct the coding

  • hi i am new to all this, I have made a website http://www.imagetree.org.uk but as you will see there is a small image at the top (header) that i put into the header php but at the same time i think i deleted the codes for the size or something, i tried to fix it but failed i don’t know how to make i bigger!
    i am using the photolistic theme
    header php currently looks like this:

    <body <?php body_class(); ?>>
    <div id="wrapper" class="hfeed">
    	<div id="header">
    		<div id="masthead">
    			<div id="branding" role="banner">
    			     <hgroup>
    				<h1 id="site-title"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php theme_logo(); ?></a></span></h1>
    				</<?php echo $heading_tag; ?>>
    				<div id="site-description"><?php bloginfo( 'description' ); ?></div>


    [Please use the code buttons when posting code ]

    if you could help me i would be so grateful
    thank you

Viewing 4 replies - 1 through 4 (of 4 total)
  • the image size is set im style.css of your theme:

    #header #site-title img {
    	float:none;
    	display:inline;
    	position:relative;
    	top:5px;
    	left:6px;
    	width:45px;
    	height:45px;
    }

    Hi,
    use this code

    #header #site-title img {
    display: block;
    float: none;
    height: auto;
    left: 0;
    position: relative;
    top: 5px;
    width: 100%;
    }

    Thread Starter mickey0011

    (@mickey0011)

    Thank you for your help but my problem still exists.
    Alchymyth – that code is already present in the style.css
    Sonai – tried that one,but I have no idea where to put it, it just moved my image to the left and then i had the code showing underneath it.
    Im sure I’m not doing it right. But Im quite sure the problem exists in the header.php as this is where i know i have deleted something by accident.
    Any more ideas???

    Thread Starter mickey0011

    (@mickey0011)

    Ive deleted the orignal download for the theme then resintalled it which helped a little but instead of my logo i now i have a box with a small red cross at the top?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘header too small, i need help to correct the coding’ is closed to new replies.