Xenforo - Grafik logosunu metinle değiştir (1 Viewer)

Obfuscate

Hokus Pokus Kodları Çözüyoruz.
Joined
Oct 6, 2018
Credits
40
Rating - 0%
CSS:
.header-logo-content-before() {
    font-family: 'Roboto';
    content: "xenForo";
    font-weight: bold;
    text-shadow: 3px 3px 3px #333;
}

.p-header-logo.p-header-logo--image {
    img {
        display: none;
    }

    a {
        &:before {
            .header-logo-content-before;
            font-size: 2em;
        }

        &:after {
            content: "- XenForo Community";
            position: relative;
            top: -2px;
            text-shadow: 3px 3px 3px #333333;
        }
    }
}

@media (max-width:@xf-responsiveMedium) {
    .p-nav-inner .p-nav-smallLogo {
        max-width: 150px;
        img {
           display: none;
        }

        a {
            &:before {
                .header-logo-content-before;
                font-size: 20px;
            }

            &:hover {
                text-decoration: none;
            }
        }
    }
}
 

baznx 

https://www.teknolojikalbi.com/
Joined
Jan 7, 2021
Credits
7,732
Rating - 0%
CSS:
.header-logo-content-before() {
    font-family: 'Roboto';
    content: "xenForo";
    font-weight: bold;
    text-shadow: 3px 3px 3px #333;
}

.p-header-logo.p-header-logo--image {
    img {
        display: none;
    }

    a {
        &:before {
            .header-logo-content-before;
            font-size: 2em;
        }

        &:after {
            content: "- XenForo Community";
            position: relative;
            top: -2px;
            text-shadow: 3px 3px 3px #333333;
        }
    }
}

@media (max-width:@xf-responsiveMedium) {
    .p-nav-inner .p-nav-smallLogo {
        max-width: 150px;
        img {
           display: none;
        }

        a {
            &:before {
                .header-logo-content-before;
                font-size: 20px;
            }

            &:hover {
                text-decoration: none;
            }
        }
    }
}
Extra.less'e demi?
 
Joined
Sep 15, 2020
Credits
6
Rating - 0%
CSS:
.header-logo-content-before() {
    font-family: 'Roboto';
    content: "xenForo";
    font-weight: bold;
    text-shadow: 3px 3px 3px #333;
}

.p-header-logo.p-header-logo--image {
    img {
        display: none;
    }

    a {
        &:before {
            .header-logo-content-before;
            font-size: 2em;
        }

        &:after {
            content: "- XenForo Community";
            position: relative;
            top: -2px;
            text-shadow: 3px 3px 3px #333333;
        }
    }
}

@media (max-width:@xf-responsiveMedium) {
    .p-nav-inner .p-nav-smallLogo {
        max-width: 150px;
        img {
           display: none;
        }

        a {
            &:before {
                .header-logo-content-before;
                font-size: 20px;
            }

            &:hover {
                text-decoration: none;
            }
        }
    }
}
süpermi
 

Users who are viewing this thread

Top