• Hi all,

    I want to replace the title “Gig Studio” on development.gigstudio.com with a logo. I also need to move it’s location closer to the top of the page.

    Can anyone point out a direction to do this?

    Thanks in advance
    /Johlund

Viewing 2 replies - 1 through 2 (of 2 total)
  • You should be able to add an image for the logo under Appearance in your Dashboard. As for moving the location, you would need to add that to the theme’s CSS or use the WordPress.com Custom CSS plugin

    You could add the image via CSS using something like:

    #site-title {
        background: url(images/logo.jpg) no-repeat center top;
    }

    in style.css. Then move the text off the page using something like:

    #site-title span, #site-description {
        display:block;
        position:absolute;
        top:-9999px;
        left:-9999px;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Replacing my title with a logo?’ is closed to new replies.