hi, I know how to handle the logo and change it but i would like to delete it so It s easy to overrite it with a transparent png or just to uncomment it in the local settings or just $wgLogo = "";
But what do I need to do that there is not that space on top left? I would like to move the navigation to the top left without leaving the space the logo was thought for
:) Thanks a lot!
On Sun, 16 Jan 2011, uv22e Alcott wrote:
But what do I need to do that there is not that space on top left? I would like to move the navigation to the top left without leaving the space the logo was thought for
To do this, you probably need to modify the skin you're using. In the skin I'm using, there is the following code snippet:
#p-logo { top: 0; left: 0; position: absolute; /*needed to use z-index */ z-index: 3; height: 155px; width: 12em; overflow: visible; }
I'm guessing you would want to reduce the height and width to zero.
On Sat, 15 Jan 2011, David Benfell wrote:
To do this, you probably need to modify the skin you're using. In the skin I'm using, there is the following code snippet:
I forgot to mention this is in main.css.
#p-logo { top: 0; left: 0; position: absolute; /*needed to use z-index */ z-index: 3; height: 155px; width: 12em; overflow: visible; }
I'm guessing you would want to reduce the height and width to zero.
I forgot to mention this is in main.css.
Thanks for the help! :)
But it has no effect. I deactivated the folling lines in the LocalSettings:
## The relative URL path to the logo. Make sure you change this from the default, ## or else you'll overwrite your logo when you upgrade! # $wgLogo = "";
[...]
# $wgLogo = "/skins/monobook/logo.jpg";
and did the changes in the main.css
I also deleted the logo.jpg picture
mediawiki-l@lists.wikimedia.org