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