• I want to add my company’s name/logo in the top left header of my page but can’t figure this out. I put the code in that you use in a text box but that didn’t work. Can anyone help me with this?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Without seeing your site? No.

    Thread Starter galmquist1

    (@galmquist1)

    http://www.texasapartmentpoolservices.com

    I want to put my logo where my company name is in the top left corner.

    Upload a 400px by 72 px image called logo.jpg to your theme’s images folder. Then edit your theme’s style.css file and change:

    #title-area {
        float: left;
        margin: 0;
        overflow: hidden;
        padding: 20px 0 0;
        width: 400px;
    }

    to:

    #title-area {
        float: left;
        margin: 0;
        overflow: hidden;
        padding: 20px 0 0;
        width: 400px;
        background:url(images/logo.jpg) no-repeat left top;
    }
    #title {
    	position:absolute;
    	top:-9999px;
    	left:-9999px;
    }
    Thread Starter galmquist1

    (@galmquist1)

    I put this exactly and it didn’t work. Is anything out of place?

    #title-area {
    width: 400px;
    float: left;
    margin: 0;
    padding: 20px 0 0 0;
    overflow: hidden;
    background:url(images/logo.jpg) no-repeat left top;
    }
    #title {
    position:absolute;
    top:-9999px;
    left:-9999px;
    }

    Have you checked the options for this theme? On checking through the full stylesheet, it looks like you already have options to use an image in the header.

    Thread Starter galmquist1

    (@galmquist1)

    I am a beginner with wordpress and have no idea how to do that. How do I check the theme options? I am using the Enterprise Child Theme

    As this is a commercial theme, we cannot really help. You need to seek support from the theme vendors: http://www.studiopress.com/support

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to add image in top left?’ is closed to new replies.