MediaWiki:Vector.css: Difference between revisions
Content deleted Content added
Created page with "→Vector Legacy के header logo को कस्टम SVG से बदलें: #p-logo a { background-image: url("/resources/assets/wikilogo.svg") !important; background-size: contain !important; width: 200px; →अपनी लोगो की width यहाँ लिखें: height: 60px; →अपनी लोगो की height यहाँ लिखें: text-indent: -9999px; /* लिंक टेक्स्ट छुपाए..." |
No edit summary Tag: Reverted |
||
Line 1:
/* पुराना Vector (Legacy)
/* पहले default background हटाएं */
#p-logo a {
background: none !important;
}
/* फिर custom SVG background सेट करें */
#p-logo .mw-logo {
background-image: url("/resources/assets/wikilogo.svg") !important;
background-repeat: no-repeat !important;
background-size: contain !important;
width: 200px !important; /* अपनी लोगो
height: 60px !important; /* अपनी लोगो
text-indent: -9999px !important;
}
/* लिंक टेक्स्ट पूरी तरह छुपाने के लिए */
#p-logo .mw-logo a {
text-indent: -9999px !important;
}
|