Jump to content

(solved)moving logo


Recommended Posts

is this a custom template? If so my best suggestion is to use Firebug and look for #logo, your position is currently set at 79px, changing it to 69px should do the trick.

you can also try changing global.css:

h1#logo {
   left: 20px;
   position: absolute;
   top: 79px;
   z-index: 1;
}


to:

h1#logo {
   left: 20px;
   position: absolute;
   top: 69px;
   z-index: 1;
}

Link to comment
Share on other sites

×
×
  • Create New...