The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
2 posters

    Can't change Username Fonts

    avatar
    cfdanz
    Forumember


    Male Posts : 26
    Reputation : 1
    Language : Tagalog

    Solved Can't change Username Fonts

    Post by cfdanz January 5th 2014, 3:24 pm

    I want to change my username font to Papyrus, but it doesn't work!
    Here's all of my CSS code: (New Forum)

    Code:
    //Username Fonts

    a[href="/u1"] {
            font-family: 'Papyrus', serif;
            font-size: 12px;
            color:#ff0000;
          }

    // Customization for Groups

    a[href="/g2-administrator"] {
        background: url("http://2img.net/i/fa/admin/couronne.png") no-repeat;
        padding-left: 19px;
        padding-top: 2px;
    }
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Can't change Username Fonts

    Post by Ange Tuteur January 5th 2014, 3:35 pm

    Hello cfdanz,

    The reason the code is not working is because you made your selectors invalid by placing text and slashes before them. What you're doing is a ' oneline javascript comment ' which is not supported in CSS, hence breaking your code.

    You should instead write comments as :
    /* THIS IS A CSS COMMENT */

    Code:
       /* Username Fonts */

        a[href="/u1"] {
                font-family: 'Papyrus', serif;
                font-size: 12px;
                color:#ff0000;
              }

        /* Customization for Groups */

        a[href="/g2-administrator"] {
            background: url("http://2img.net/i/fa/admin/couronne.png") no-repeat;
            padding-left: 19px;
            padding-top: 2px;
        }
    avatar
    cfdanz
    Forumember


    Male Posts : 26
    Reputation : 1
    Language : Tagalog

    Solved Re: Can't change Username Fonts

    Post by cfdanz January 5th 2014, 3:38 pm

    Solved! Thanks for the help mate Very Happy
    CHEERS!
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Can't change Username Fonts

    Post by Ange Tuteur January 5th 2014, 3:41 pm

    You're welcome I love you

    Topic solved and archived

      Current date/time is September 23rd 2024, 6:26 pm