• awkward_clam

    (@awkward_clam)


    site is here

    I wanted to add a little logo in the top right of the page (over the blackish background). Is this possible?

    Thanks!!

Viewing 1 replies (of 1 total)
  • Michael

    (@alchymyth)

    you could try and edit header.php,
    find:

    <div id="header">
    		<div id="title">

    and change it to:

    <div id="header"><div id="logo"><img src="https://www.awkwardisdead.com/jacksoncunningham/wp-content/themes/professional-property-theme.1.1/professional-property-theme/images/logo.jpg"/></div>
    		<div id="title">

    that assumes that your logo.jpg image is saved in the images folder of your theme.

    then edit style.css of your theme, find:

    #header{
    	float:left;
    	height:203px;
    }

    and change it to (with the new style #header #logo added):

    #header{
    	float:left;
    	height:203px;
    width:100%;
    }
    
    #header #logo {float:right; margin:20px 10px 0 0; }

    changing the margin allows for positioning the logo.

Viewing 1 replies (of 1 total)
  • The topic ‘Add an image in header’ is closed to new replies.