Welcome to the TWC Wiki! You are not logged in. Please log in to the Wiki to vote in polls, change skin preferences, or edit pages. See HERE for details of how to LOG IN.
 Actions

REPLY BOX WATERMARK

From TWC Wiki

Revision as of 09:00, 16 June 2025 by Makanyane (talk | contribs) (Created page with "Adds TWC eagle logo as watermark in the thread edit/reply box <pre> // ***** START - REPLY BOX WATERMARK ***** // eagle as watermark in edit/reply box - from GED's post .fr-box.fr-basic .fr-element { position: relative; background: none; } .fr-box.fr-basic .fr-element:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('https://twcenter.net/images/ChocSkin/totalwar-black-eagle-noBline...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Adds TWC eagle logo as watermark in the thread edit/reply box

// ***** START - REPLY BOX WATERMARK *****
// eagle as watermark in edit/reply box - from GED's post
.fr-box.fr-basic .fr-element {
    position: relative;
    background: none;
}

.fr-box.fr-basic .fr-element:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://twcenter.net/images/ChocSkin/totalwar-black-eagle-noBline-400px.webp') no-repeat bottom center; /* Change to your logo */
    background-size: 300px; /* Adjust size as needed */
    opacity: 0.05; /* Set opacity to 20% or whatever you prefer */
    pointer-events: none; /* Make it non-interactive */
    z-index: -1; /* Ensure it appears behind the text content */
	.m-colorScheme({{ $xf.style.getAlternateStyleType() }},
    {
        // for dark style - seems to need the non-changed bits copied in too
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;	
    background: url('https://twcenter.net/images/ChocSkin/totalwar-gold-eagle-noBline-640x224.webp') no-repeat bottom center;
	opacity: 0.12;
	background-size: 300px; /* Adjust size as needed */
    pointer-events: none; /* Make it non-interactive */
    z-index: -1; /* Ensure it appears behind the text content */
    });
}

// ***** END - REPLY BOX WATERMARK *****
YOU can help us improve this Wiki! ~ Look for ways to help and editing advice. ~ If you need further advice, please post here.


Cookies help us deliver our services. By using our services, you agree to our use of cookies.