[pmwiki-users] moving PageLogoUrl

H. Fox haganfox at users.sourceforge.net
Thu Jul 26 04:40:02 CDT 2007


On 7/26/07, Maria McKinley <parody at u.washington.edu> wrote:
> Can anyone tell me where the position of PageLogoUrl is set? I would
> like to move it down slightly lower on the page, but can't figure out
> how to change the position.

In the default skin the position is set in the skin's stylesheet...

#wikilogo { margin-top:4px; padding:6px; border-bottom:1px #cccccc solid; }

You can create a pub/css/local.css file and paste in a line like this one

   #wikilogo { margin-top:10px; }

Another option is to do it in local/config.php so it only affects one skin, with

   if (!$Skin or $Skin == 'pmwiki') {
     $HTMLStylesFmt['mvlogo'] = "
     #wikilogo { margin-top:10px; } ";
   }

making sure to insert those lines *after* any lines that set the skin.

Hagan



More information about the pmwiki-users mailing list