MediaWiki:Common.css: Difference between revisions

From DBWiki
Jump to navigation Jump to search
Created page with "→‎CSS placed here will be applied to all skins: #p-logo { position: relative; } #p-logo::after { content: "Your Subtitle Here"; →‎Replace with your actual subtitle: display: block; font-size: 14px; →‎Adjust the font size as needed: color: #000; →‎Adjust color as needed: text-align: center; margin-top: 5px; →‎Space between the logo and the subtitle: }"
 
No edit summary
Line 6: Line 6:


#p-logo::after {
#p-logo::after {
     content: "Your Subtitle Here"; /* Replace with your actual subtitle */
     content: "DBWiki"; /* Replace with your actual subtitle */
     display: block;
     display: block;
     font-size: 14px; /* Adjust the font size as needed */
     font-size: 14px; /* Adjust the font size as needed */

Revision as of 18:07, 10 October 2024

/* CSS placed here will be applied to all skins */

#p-logo {
    position: relative;
}

#p-logo::after {
    content: "DBWiki"; /* Replace with your actual subtitle */
    display: block;
    font-size: 14px; /* Adjust the font size as needed */
    color: #000; /* Adjust color as needed */
    text-align: center;
    margin-top: 5px; /* Space between the logo and the subtitle */
}